ckelley
01/09/2018, 7:11 AMckelley
01/09/2018, 7:12 AMquery($skip: Int, $limit: Int, $ids: [ID!]) {
allArticles(skip: $skip, first: $limit, filter: {
id_not_in: $ids
}) {
id
}
}
{
"first": 5,
"skip": 100,
"ids": []
}
Can't press the "play" button, query won't submit, dev console reads:
invariant.js:19 Uncaught Error: Can only create NonNull of a Nullable GraphQLType but got: ID.
ckelley
01/09/2018, 7:13 AM"error": "Function returned invalid status code: 0. Raw body: empty.last"
error, even though a) I have no console.logs b) everything is wrapped in a try catch where I log e.messageckelley
01/09/2018, 7:14 AMckelley
01/09/2018, 7:14 AMckelley
01/09/2018, 7:17 AM"error": "Function returned invalid status code: 0. Raw body: empty.last"
error occur if the function times out?nilan
01/09/2018, 8:25 AMckelley
01/09/2018, 4:11 PM