npm install
npm start
GraphiQL dashboard: http://localhost:7072/api/gql
Paste this into query on GraphiQL dashboard.
{
hello
getCurrentUser {
name
dateOfBirth
upperCaseName
}
getTestValue
}
Paste this into query on GraphiQL dashboard.
mutation {
updateTestValue(newValue: "new value")
}
Re-run first sample query and see updated value for "getTestValue"
npm run function:new