File tree Expand file tree Collapse file tree 3 files changed +23
-11
lines changed Expand file tree Collapse file tree 3 files changed +23
-11
lines changed Original file line number Diff line number Diff line change @@ -27,18 +27,18 @@ jobs:
27
27
--name products \
28
28
--convert \
29
29
--routing-url https://subgraph-products-j3nprurqka-ue.a.run.app \
30
- --schema ./products- schema.graphql
30
+ --schema ./final/nosql-products/ schema.graphql
31
31
32
- - name : Rover Subgraph Publish Orders
33
- run : |
34
- rover subgraph publish ${{vars.ACTOR}}${{ env.GEN }}@current \
35
- --name orders \
36
- --routing-url https://subgraph-orders-j3nprurqka-ue.a.run.app \
37
- --schema ./orders-schema.graphql
32
+ # - name: Rover Subgraph Publish Orders
33
+ # run: |
34
+ # rover subgraph publish ${{vars.ACTOR}}${{ env.GEN }}@current \
35
+ # --name orders \
36
+ # --routing-url https://subgraph-orders-j3nprurqka-ue.a.run.app \
37
+ # --schema ./orders-schema.graphql
38
38
39
39
- name : Rover Subgraph Publish Customers
40
40
run : |
41
41
rover subgraph publish ${{vars.ACTOR}}${{ env.GEN }}@current \
42
42
--name customers \
43
43
--routing-url https://subgraph-customers-j3nprurqka-ue.a.run.app \
44
- --schema ./final/customers- schema.graphql
44
+ --schema ./final/sql-customers/ schema.graphql
Original file line number Diff line number Diff line change @@ -24,16 +24,16 @@ jobs:
24
24
run : |
25
25
rover subgraph check ${{vars.ACTOR}}${{ env.GEN }}@current \
26
26
--name products \
27
- --schema ./products- schema.graphql
27
+ --schema ./final/nosql-products/ schema.graphql
28
28
29
29
- name : Rover Subgraph Check Orders
30
30
run : |
31
31
rover subgraph check ${{vars.ACTOR}}${{ env.GEN }}@current \
32
32
--name orders \
33
- --schema ./orders- schema.graphql
33
+ --schema ./rest-orders/ schema.graphql
34
34
35
35
- name : Rover Subgraph Check Customers
36
36
run : |
37
37
rover subgraph check ${{vars.ACTOR}}${{ env.GEN }}@current \
38
38
--name customers \
39
- --schema ./final/customers- schema.graphql
39
+ --schema ./final/sql-customers/ schema.graphql
Original file line number Diff line number Diff line change
1
+ {
2
+ "format" : " apollo-persisted-query-manifest" ,
3
+ "version" : 1 ,
4
+ "operations" : [
5
+ {
6
+ "id" : " Users" ,
7
+ "body" : " query Users {\n users {\n firstName\n lastName\n email\n activeCart {\n items {\n colorway\n price\n size\n id\n }\n }\n }\n }" ,
8
+ "name" : " Users" ,
9
+ "type" : " query"
10
+ }
11
+ ]
12
+ }
You can’t perform that action at this time.
0 commit comments