yew: initial todo app skeleton
This commit is contained in:
parent
4ed90a4403
commit
e439bddad0
7 changed files with 7874 additions and 0 deletions
10
graphql/all_users_todos.graphql
Normal file
10
graphql/all_users_todos.graphql
Normal file
|
@ -0,0 +1,10 @@
|
|||
query AllUsersTodos {
|
||||
users {
|
||||
id
|
||||
name
|
||||
todos(order_by: {created_at: asc}, limit: 5) {
|
||||
title
|
||||
created_at
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue