mirror of
https://github.com/kou029w/grafbase-kou029w-todo-example.git
synced 2025-01-18 18:28:00 +00:00
12 lines
155 B
GraphQL
12 lines
155 B
GraphQL
type TodoList @model {
|
|
id: ID!
|
|
title: String!
|
|
todos: [Todo]
|
|
}
|
|
|
|
type Todo @model {
|
|
id: ID!
|
|
list: TodoList
|
|
title: String!
|
|
complete: Boolean!
|
|
}
|