I hereby claim:
- I am samhatoum on github.
- I am samhatoum (https://keybase.io/samhatoum) on keybase.
- I have a public key ASABTKWQxZ1B5hcER0eHPAq3oqnIYASaHUcmHmSvvmnnUwo
To claim this, I am signing this object:
| const { ApolloServer, gql } = require('apollo-server'); | |
| // Construct a schema, using GraphQL schema language | |
| const typeDefs = gql` | |
| type Query { | |
| hello: String | |
| order(orderId: String!): Order | |
| } | |
| type Order { |
I hereby claim:
To claim this, I am signing this object:
| find . -name '*.es6.js' -print0 | xargs -0 -n1 bash -c 'mv "$0" "${0/.es6.js/.js}"' |
| # First start chromedriver from the console like this | |
| chromedriver --url-base=wd/hub --verbose | |
| # Then in another tab / window: issue a command to start a new chrome session via the JSON protocol | |
| curl -XPOST http://localhost:9515/wd/hub/session -d '{"desiredCapabilities":{"browserName":"chrome"}}' | |
| # If you can see a chrome window pop up, you're all set. If not, check the chromedriver output and fix your issue |