mirror of
https://github.com/vuejs/vue-cli.git
synced 2026-03-15 05:31:02 -05:00
20 lines
249 B
GraphQL
20 lines
249 B
GraphQL
#import "./taskFragment.gql"
|
|
#import "./promptFragment.gql"
|
|
|
|
query task ($id: ID!) {
|
|
task (id: $id) {
|
|
...task
|
|
link
|
|
prompts {
|
|
...prompt
|
|
}
|
|
views {
|
|
id
|
|
label
|
|
icon
|
|
component
|
|
}
|
|
defaultView
|
|
}
|
|
}
|