Skip to content

Commit 18b491c

Browse files
committed
chore: add graphql files
1 parent 08c32f7 commit 18b491c

File tree

4 files changed

+3244
-0
lines changed

4 files changed

+3244
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
mutation CreateTodo($createTodoInput: CreateTodoInput!) {
2+
createTodo(input: $createTodoInput) {
3+
id
4+
updatedAt
5+
createdAt
6+
content
7+
owner
8+
}
9+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
subscription onCreateSubscription {
2+
onCreateTodo {
3+
id
4+
updatedAt
5+
createdAt
6+
content
7+
owner
8+
}
9+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
query MyQuery {
2+
listTodos {
3+
items {
4+
id
5+
updatedAt
6+
createdAt
7+
content
8+
owner
9+
}
10+
nextToken
11+
}
12+
}

0 commit comments

Comments
 (0)