Install it and run:
npm install
npm run dev
query loadAllTodos {
todos {
id
rev
text
isCompleted
}
}
mutation addTodo {
upsertTodo(input: {text: "hello world!"}) {
id
rev
text
isCompleted
}
}
mutation removeTodo {
deleteTodo(input: {id: "df86d630-6be8-11e7-9130-6bd8310df6f4", rev: "1-f3347d53ed554ca79a37b87a7d85eeb5"}) {
id
rev
text
isCompleted
}
}
Deploy it to the cloud with DropStack
npm i -g dropstack-cli
dropstack login
dropstack deploy