You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/guide/README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ You should have basic knowledge of [Vue](https://vuejs.org/), [Vuex](https://vue
24
24
25
25
## Actions
26
26
27
-
While using Vuex-ORM with the Apollo plugin you have to distinct between two types of Vuex actions:
27
+
While using Vuex-ORM with the GraphQL plugin you have to distinct between two types of Vuex actions:
28
28
29
29
- Vuex-ORM actions: Retrieve data from or save data to Vuex (`Vue Component <--> Vuex Store`)
30
30
- Persistence actions: Load data from or persist data to the GraphQL API (`Vuex Store <--> GraphQL Server`)
@@ -90,11 +90,11 @@ After [installing](/guide/setup) this plugin you can load data in your component
90
90
```
91
91
92
92
::: tip
93
-
Vuex-ORM-Apollo works with the [Apollo Dev Tools](https://chrome.google.com/webstore/detail/apollo-client-developer-t/jdkknkkbebbapilgoeccciglkfbmbnfm)!
93
+
Vuex-ORM-GraphQL works with the [Apollo Dev Tools](https://chrome.google.com/webstore/detail/apollo-client-developer-t/jdkknkkbebbapilgoeccciglkfbmbnfm)!
94
94
:::
95
95
96
96
97
97
## License
98
98
99
-
VuexORM Apollo is open-sourced software licensed under the
Copy file name to clipboardExpand all lines: docs/guide/relationships/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
[[toc]]
4
4
5
-
This chapter describes how the Apollo-Plugin interacts with relationships. All relationships work out of the box.
5
+
This chapter describes how the GraphQL-Plugin interacts with relationships. All relationships work out of the box.
6
6
We take the examples from the [Vuex-ORM documentation for definition relationships](https://vuex-orm.github.io/vuex-orm/relationships/defining-relationships.html)
Copy file name to clipboardExpand all lines: docs/guide/setup/README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,24 +5,24 @@
5
5
6
6
## Installation
7
7
8
-
Installation of the Apollo plugin is easy. First add the package to your dependencies:
8
+
Installation of the GraphQL plugin is easy. First add the package to your dependencies:
9
9
10
10
```bash
11
-
$ yarn add @vuex-orm/plugin-apollo
11
+
$ yarn add @vuex-orm/plugin-graphql
12
12
```
13
13
14
14
or
15
15
16
16
```bash
17
-
$ npm install --save @vuex-orm/plugin-apollo
17
+
$ npm install --save @vuex-orm/plugin-graphql
18
18
```
19
19
20
20
21
21
After that we setup the plugin. Add this after [registering your models to the database](https://vuex-orm.github.io/vuex-orm/prologue/getting-started.html#register-models-and-modules-to-the-vuex-store):
0 commit comments