Hi guys! Is there a way to use server values? (for...
# prisma-whats-new
m
Hi guys! Is there a way to use server values? (for example
$now
, which is provided by
graphcool
and even by the
apollo-dev-tools
, but using it like this inputs
null
by default)
Copy code
query LatestRequests ($now: DateTime) {
  allRequests(orderBy: createdAt_DESC, filter: {
    documents_none: {
      createdAt_lt: $now
    }
  }) {
    objectID: id
    description
    createdAt
    author {
      name
      photo
      school {
        id
        name
      }
    }
  }
}
@iamclaytonray do you maybe know how can I solve this?