matic
10/27/2017, 4:04 PM$now
, which is provided by graphcool
and even by the apollo-dev-tools
, but using it like this inputs null
by default)
query LatestRequests ($now: DateTime) {
allRequests(orderBy: createdAt_DESC, filter: {
documents_none: {
createdAt_lt: $now
}
}) {
objectID: id
description
createdAt
author {
name
photo
school {
id
name
}
}
}
}
matic
10/27/2017, 4:18 PM