Skip to content

Commit e6454fe

Browse files
committed
Adjust small bit of docs
1 parent bea40ce commit e6454fe

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ actionText: Get Started →
55
actionLink: /guide/
66
features:
77
- title: GraphQL
8-
details: This Vuex-ORM plugin uses the apollo-client to let you sync your Vuex-ORM state with a GraphQL API
8+
details: This Vuex-ORM plugin uses the apollo-client to let you sync your Vuex-ORM state with a GraphQL API.
99
- title: Vuex-ORM
1010
details: The plugin keeps up with the API and design of Vuex-ORM with full reactivity.
1111
- title: No boilerplate

docs/guide/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ While using Vuex-ORM with the Apollo plugin you have to distinct between two typ
1919
- Vuex-ORM actions: Retrieve data from or save data to Vuex (`Vue Component <--> Vuex Store`)
2020
- Persistence actions: Load data from or persist data to the GraphQL API (`Vuex Store <--> GraphQL Server`)
2121

22-
The following table lists all actions and what they to:
22+
The following table lists all actions and what they do:
2323

2424
CRUD | Vuex Only | Persist to GraphQL API
2525
--| -- | --

docs/guide/graphql/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44

55
This plugin has an opinion of how the GraphQL API schema should look like:
66

7-
- Query for multiple records is plural camelCase: `blogPosts`
7+
- Query for multiple records is plural camelCase: `blogPosts`.
88
- Mutations begin with the verb (`create`, `update`, `delete`) and the camelCased entity: `createBlogPost` for example.
9-
- The create mutation expects the new record as a input type argument
10-
- The update mutation expects two arguments: The ID and the new record as a input type
11-
- The delete mutation expects the record ID to delete
9+
- The create mutation expects the new record as a input type argument.
10+
- The update mutation expects two arguments: The ID and the new record as a input type.
11+
- The delete mutation expects the record ID to delete.
1212
- Multiple records are within a `nodes` object and filtered by a `filter` argument.
1313

1414
You will find concrete examples of the GraphQL queries which are generated by this plugin in the

0 commit comments

Comments
 (0)