Skip to content

Commit

Permalink
install instruction
Browse files Browse the repository at this point in the history
  • Loading branch information
almunnings committed Nov 6, 2023
1 parent 06fd68a commit 58525b4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ composer require 'drupal/graphql:^4.5'
### Install GraphQL Compose

```bash
composer require 'drupal/graphql_compose:^2.0@beta'
composer require 'drupal/graphql_compose:^2.0'
```

### Enable the module
Expand Down
4 changes: 2 additions & 2 deletions misc/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
## 2.0.0 - You go girl

Major feature/refactor wise, we good to go into semantic versioning. \
I'd prefer to get some new features in now with a 2.1.0 release.
I'd prefer to get some new features in now with a 2.1.0 release, and we can start to get proper sec coverage.

Upgrading from beta to 2.0.0 docs: https://drupal-graphql-compose.github.io/documentation/#/misc/upgrading
Upgrading from `beta` to `2.0.0` docs: https://drupal-graphql-compose.github.io/documentation/#/misc/upgrading

- Introduce simple entity type query for load by id (Advanced settings)
- Add entity type singuliarizing (Advanced settings)
Expand Down
5 changes: 4 additions & 1 deletion misc/upgrading.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
- Entity type: Taxonomy Term
- Vocabulary name: `Tags`
- SDL Type: `TermTag`
- Edge Query: `termTags`
- Single query: `termTag()`
- Edge Query: `termTags()`

A results of this is the name of your types can change. Eg `NodeQuizzes` is now `NodeQuiz`.

Expand All @@ -25,13 +26,15 @@ Please check your schema and update your queries accordingly.
- Entity type: Taxonomy Term
- Vocabulary name: `Tags`
- SDL Type: `TermTags`
- Single query: `termTags()`
- Edge Query: `termTagsItems`

#### **Before (Beta)**

- Entity type: Taxonomy Term
- Vocabulary name: `Tags`
- SDL Type: `TermTags`
- Single query: `termTags()`
- Edge Query: `termTagss`

<!-- tabs:end -->
Expand Down

0 comments on commit 58525b4

Please sign in to comment.