Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Trigger build with modified neo4j-graphql-js #635

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ ENV BUILD_COMMIT=$BUILD_COMMIT
ARG WORKDIR=/nitro-backend
RUN mkdir -p $WORKDIR
WORKDIR $WORKDIR

RUN apk --no-cache add git

COPY package.json yarn.lock ./
COPY .env.template .env
CMD ["yarn", "run", "start"]
Expand Down
4 changes: 2 additions & 2 deletions backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
"lodash": "~4.17.11",
"ms": "~2.1.1",
"neo4j-driver": "~1.7.4",
"neo4j-graphql-js": "~2.6.0",
"neo4j-graphql-js": "git+https://github.com/roschaefer/neo4j-graphql-js.git#239-improve_order_by_performance-temporary-npm-package",
"node-fetch": "~2.6.0",
"npm-run-all": "~4.1.5",
"request": "~2.88.0",
Expand Down Expand Up @@ -106,4 +106,4 @@
"nodemon": "~1.19.0",
"supertest": "~4.0.2"
}
}
}
5 changes: 2 additions & 3 deletions backend/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5564,10 +5564,9 @@ neo4j-driver@^1.7.3, neo4j-driver@~1.7.4:
text-encoding "^0.6.4"
uri-js "^4.2.1"

neo4j-graphql-js@~2.6.0:
"neo4j-graphql-js@git+https://github.com/roschaefer/neo4j-graphql-js.git#239-improve_order_by_performance-temporary-npm-package":
version "2.6.0"
resolved "https://registry.yarnpkg.com/neo4j-graphql-js/-/neo4j-graphql-js-2.6.0.tgz#1c418c5e4de384bd0992f99538d3d056d0602669"
integrity sha512-YStuqeBg6sjXQvQjICz+jpG4W58yHz3Fi1Gjw9HsVYeCSr97ARbGn4Sl02970IKpBeRYqKt1N1Xp3QIvO3OMIw==
resolved "git+https://github.com/roschaefer/neo4j-graphql-js.git#a4953a2ea20981de988daf0fb28c038e98cf92f7"
dependencies:
graphql "^14.2.1"
graphql-auth-directives "^2.1.0"
Expand Down