mirror of
https://github.com/dillonkearns/elm-pages-v3-beta.git
synced 2024-11-28 14:34:18 +03:00
10 lines
150 B
Plaintext
10 lines
150 B
Plaintext
|
type Todo {
|
||
|
description: String!
|
||
|
completed: Boolean!
|
||
|
}
|
||
|
|
||
|
type Query {
|
||
|
allTodos: [Todo!]!
|
||
|
todosByCompletedFlag(completed: Boolean!): [Todo!]!
|
||
|
}
|