Skip to content

Correct README #12

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

Merged
merged 1 commit into from
Oct 16, 2021
Merged
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
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ To customize execution:

```ts
export function execute(args: ExecutionArgs): PromiseOrValue<ExecutionResult> {
const executor = new Executor(args);
const executor = new MyCustomExecutor(args);
return executor.executeQueryOrMutation(args);
}
```
Expand All @@ -59,19 +59,20 @@ npm install graphql-executor@git://github.com/yaacovCR/graphql-executor.git#npm
GraphQL Executor is a general-purpose library and can be used both in a Node server
and in the browser.

Building a project using GraphQL.js with [webpack](https://webpack.js.org) or
Building a project using GraphQL Executor with [webpack](https://webpack.js.org) or
[rollup](https://github.com/rollup/rollup) should just work and only include
the portions of the library you use. This works because GraphQL.js is distributed
with both CommonJS (`require()`) and ESModule (`import`) files. Ensure that any
custom build configurations look for `.mjs` files!

### Contributing

We actively welcome pull requests. Learn how to [contribute](./.github/CONTRIBUTING.md).
We actively welcome pull requests. GraphQL Executor is spec-compliant but is open to adopting
experimental behavior such as `@defer`/`@stream` support.

### Changelog

Changes are tracked as [GitHub releases](https://github.com/graphql/graphql-js/releases).
Changes are tracked as [GitHub releases](https://github.com/yaacovCR/graphql-executor/releases).

### License

Expand Down