sandbox-node/postgraphile
dancingCycle 95906a7229 fix(postgraphile): KEEP schema IN MIND! 2024-03-15 14:30:21 +01:00
..
.gitignore chore(postgraphile): extend readme.md 2024-03-11 15:05:20 +01:00
index.js fix(postgraphile): KEEP schema IN MIND! 2024-03-15 14:30:21 +01:00
package-lock.json chore(postgraphile): initial commit 2024-03-06 14:29:47 +01:00
package.json chore(postgraphile): initial commit 2024-03-06 14:29:47 +01:00
readme.md fix(postgraphile): KEEP schema IN MIND! 2024-03-15 14:30:21 +01:00

readme.md

TODO: What is the issue with graphiql?

x* foo

ssh -N -L 5432:localhost:5432 -p 22 zvbn_nvp@83.223.91.130
npm i
node index.js
  • open in browser
http://localhost:<port from .env file>/graphiql
  • test
query MyQuery {
  allServices {
    edges {
      node {
        routeByRouteId {
          shortName
        }
        routeBundleByRouteBundleId {
          longName
        }
        serviceLevelByServiceLevelId {
          longName
          shortName
        }
      }
    }
  }
}