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