Skip to content

Commit

Permalink
chore: improved readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Automated authored and Automated committed Sep 12, 2022
1 parent 9383c0e commit 01b11fc
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,37 @@
# GraphQXL

> **WIP**: This project is a work in progress and currently does not offer any of the
> described features
GraphQXL is an extension of the GraphQL language with some additional features
that are useful for creating scalable server side schemas.

- Object inheritance.
```graphql
type MyType {
field: String!
...OtherType
}
```
- Import statements.
```graphql
import other_file

type MyType {
field: OtherFilesType!
}
```
- Generics.
```graphql
type MyGenericType<T> {
field: T
}

type MyType {
stringField: MyGenericType<String!>
}

```

## Install

Expand All @@ -14,3 +40,7 @@ that are useful for creating scalable server side schemas.
## Usage

> TODO

## License

> TOOD

0 comments on commit 01b11fc

Please sign in to comment.