replit-graphql v3.2.3
Replit GraphQL Client
Replit GraphQL is the most performant, package which interacts with the Replit's GraphQL API to send GraphQL queries, mutations and subscriptions.
Installation
Install it by running this command in the Shell tab of your Repl
npm install replit-graphqlUsage
const replit = require('replit-graphql');
const getUsernameById = `query ($id: Int!) {
user(id: $id) {
username
}
}`;
const variables = { id: 1 };
replit.query(getUsernameById, { variables }).then(console.log);API
Replit GraphQL exports an object with the following functions:
function query(query: string, config?: {
variables?: object|string,
raw?: boolean
}) => Promise<object|string>Performs a GraphQL query with the given query and variables. Returns a Promise that resolves to the query result.
function subscribe(query: string, config?: {
variables?: object|string
}) => EventEmitterPerforms a GraphQL subscription with the given query and variables. It returns an EventEmitter which has the following methods:
on(eventName: string, callback)unsubscribe
function setSid(sid: string) => voidSets the sid which is used for queries and subscriptions. If you have an environment variable/secret called SID, that will be used by default.
Contributing
Contributions are welcome! If you find a bug or want to add a new feature, please open an issue or submit a pull request on the GitHub repository.
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
2 years ago
2 years ago
2 years ago
2 years ago
3 years ago
2 years ago
2 years ago
3 years ago
2 years ago
3 years ago
2 years ago
2 years ago
3 years ago
3 years ago
3 years ago