sandbox-node/postgraphile-lib
dancingCycle 95906a7229 fix(postgraphile): KEEP schema IN MIND! 2024-03-15 14:30:21 +01:00
..
.gitignore fix(postgraphile): KEEP schema IN MIND! 2024-03-15 14:30:21 +01:00
index.js fix(postgraphile): KEEP schema IN MIND! 2024-03-15 14:30:21 +01:00
package-lock.json fix(postgraphile): KEEP schema IN MIND! 2024-03-15 14:30:21 +01:00
package.json fix(postgraphile): KEEP schema IN MIND! 2024-03-15 14:30:21 +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?

link

  • 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
        }
      }
    }
  }
}