mirror of
https://github.com/h3pdesign/Neon-Vision-Editor
synced 2026-04-21 13:27:16 +00:00
12 lines
116 B
GraphQL
12 lines
116 B
GraphQL
schema {
|
|
query: Query
|
|
}
|
|
|
|
type Query {
|
|
document(id: ID!): Document
|
|
}
|
|
|
|
type Document {
|
|
id: ID!
|
|
name: String
|
|
}
|