Skip to content
Snippets Groups Projects
Commit 919c869d authored by Malte Finsterwalder's avatar Malte Finsterwalder
Browse files

Merge branch 'main' into production

parents a026dc77 44e416ce
No related branches found
Tags release/1.7.2 release/1.7.3 release/1.7.4
No related merge requests found
......@@ -47,7 +47,7 @@ variables:
## common steps
cache_lint_test:
image: 'denoland/deno:alpine-1.28.1'
image: 'denoland/deno:alpine-1.36.1'
stage: 'test'
script:
- deno cache --lock=deno.lock app/deps.ts app/dev_deps.ts
......
FROM denoland/deno:alpine-1.28.1
FROM denoland/deno:alpine-1.36.1
# The port that your application listens to.
EXPOSE 8001
......
......@@ -27,7 +27,7 @@ The backend for handling donation projects, including a GraphQL API for
### Setup
Install [`deno`](https://github.com/denoland/deno_install) in version 1.25.1
Install [`deno`](https://github.com/denoland/deno_install) in version 1.36.1
as well as [`Velociraptor`](https://velociraptor.run/docs/installation/).
......
......@@ -75,7 +75,7 @@ const typeDefs = `
type Query {
# uses offset-based pagination as described in https://www.apollographql.com/docs/react/pagination/offset-based
projects(offset: Int, limit: Int, location: String): ProjectsResponse!
projects(offset: Int = 0, limit: Int = 10, location: String): ProjectsResponse!
project(id: Int!): Project!
}
`;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment