mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-08-16 17:13:01 +00:00
12 lines
189 B
GraphQL
12 lines
189 B
GraphQL
#import "./thingy.fragment.graphql"
|
|
|
|
query($slug: String!, $foo: String) {
|
|
thingy(someArg: $foo) @client {
|
|
...ThingyF
|
|
}
|
|
post(slug: $slug) {
|
|
title
|
|
otherThing @client
|
|
}
|
|
}
|