Skip to content

Commit

Permalink
fix: typo in graphql generate service command (#5712)
Browse files Browse the repository at this point in the history
Co-authored-by: Dominic Saadi <dominiceliassaadi@gmail.com>
  • Loading branch information
alephao and jtoar committed Jun 10, 2022
1 parent b71339b commit be229fd
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/docs/graphql.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ model User {
}
```
If you create your Services for this model using Redwood's generator (`yarn rw g services user`), your Services will look like this:
If you create your Services for this model using Redwood's generator (`yarn rw g service user`), your Services will look like this:
```jsx title="api/src/services/user/user.js"
import { db } from 'src/lib/db'
Expand Down
2 changes: 1 addition & 1 deletion docs/versioned_docs/version-1.0/graphql.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ model User {
}
```
If you create your Services for this model using Redwood's generator (`yarn rw g services user`), your Services will look like this:
If you create your Services for this model using Redwood's generator (`yarn rw g service user`), your Services will look like this:
```javascript
// api/src/services/user/user.js
Expand Down
2 changes: 1 addition & 1 deletion docs/versioned_docs/version-1.1/graphql.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ model User {
}
```
If you create your Services for this model using Redwood's generator (`yarn rw g services user`), your Services will look like this:
If you create your Services for this model using Redwood's generator (`yarn rw g service user`), your Services will look like this:
```jsx title="api/src/services/user/user.js"
import { db } from 'src/lib/db'
Expand Down
2 changes: 1 addition & 1 deletion docs/versioned_docs/version-1.2/graphql.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ model User {
}
```
If you create your Services for this model using Redwood's generator (`yarn rw g services user`), your Services will look like this:
If you create your Services for this model using Redwood's generator (`yarn rw g service user`), your Services will look like this:
```jsx title="api/src/services/user/user.js"
import { db } from 'src/lib/db'
Expand Down
2 changes: 1 addition & 1 deletion docs/versioned_docs/version-1.3/graphql.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ model User {
}
```
If you create your Services for this model using Redwood's generator (`yarn rw g services user`), your Services will look like this:
If you create your Services for this model using Redwood's generator (`yarn rw g service user`), your Services will look like this:
```jsx title="api/src/services/user/user.js"
import { db } from 'src/lib/db'
Expand Down
2 changes: 1 addition & 1 deletion docs/versioned_docs/version-1.4/graphql.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ model User {
}
```
If you create your Services for this model using Redwood's generator (`yarn rw g services user`), your Services will look like this:
If you create your Services for this model using Redwood's generator (`yarn rw g service user`), your Services will look like this:
```jsx title="api/src/services/user/user.js"
import { db } from 'src/lib/db'
Expand Down
2 changes: 1 addition & 1 deletion docs/versioned_docs/version-1.5/graphql.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ model User {
}
```
If you create your Services for this model using Redwood's generator (`yarn rw g services user`), your Services will look like this:
If you create your Services for this model using Redwood's generator (`yarn rw g service user`), your Services will look like this:
```jsx title="api/src/services/user/user.js"
import { db } from 'src/lib/db'
Expand Down

0 comments on commit be229fd

Please sign in to comment.