blob: 3aa0b658ee25a6350c40beba6b09180b4503f08f [file] [log] [blame]
giolekvac76b21b2020-04-18 19:28:43 +04001{
2 __drop
3}
4
5# query {
6# queryImage() {
7# id
8# objectPath
9# }
10# }
11
12# query {
13# queryFoo(filter: {
14# name: {
15# anyofterms: "foo"
16# }
17# }) {
18# id
19# name
20# bar {
21# id
22# }
23# }
24# }
25
26
27# mutation {
28# addA(input: [{
29# name: "dev"
30# }]) {
31# numUids
32# a {
33# id
34# name
35# }
36# }
37# }
38
39# mutation {
40# updateB(input: {
41# filter: {
42# id: ["0x4"]
43# },
44# set: {
45# a: [{id: "0x5"}]
46# }
47# }) {
48# numUids
49# b {
50# id
51# name
52# a {
53# id
54# name
55# b {
56# id
57# name
58# }
59# }
60# }
61# }
62# }
63
64
65# mutation {
66# addB(input:[{
67# name: "bar"
68# a: [{
69# id: "0x3"
70# }]
71# }]) {
72# numUids
73# b {
74# id
75# name
76# a {
77# id
78# name
79# b {
80# id
81# name
82# }
83# }
84# }
85# }
86# }
87
88# mutation {
89# deleteImage(
90# filter: {
91# id: {
92# gt: 0
93# }
94# }
95# ) {
96# msg
97# numUids
98# }
99# }
100
101
102
103# mutation {
104# addImage(input: [{
105# id: 2,
106# objectPath: "foo/bar.jpg"
107# }, {
108# id:3
109# objectPath: "qwe/qwe"
110# }]) {
111# numUids
112# }
113# }