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
Move federation docs under generator folder (#1059)
* Remove 4.x.x docs for current
Instead of having a next version and 4.x.x version of the docs we can just have the current. If we want to cut the docs again and work on 5.x.x the steps would be: create 4.x.x branch for code; run docusaurus command to create 4.x.x version
* Revert delete of 4.x.x
* Update latest plugin docs
Co-authored-by: Shane Myrick <[email protected]>
Copy file name to clipboardExpand all lines: generator/graphql-kotlin-federation/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
@@ -4,7 +4,7 @@
4
4
5
5
`graphql-kotlin-federation` extends the functionality of `graphql-kotlin-schema-generator` and allows you to easily
6
6
generate federated GraphQL schemas directly from the code. Federated schemas rely on a number of directives to
7
-
instrument the behavior of the underlying graph, see [the documentation](https://expediagroup.github.io/graphql-kotlin/docs/federated/federated-directives).
7
+
instrument the behavior of the underlying graph, see [the documentation](https://expediagroup.github.io/graphql-kotlin).
8
8
Once all the federated objects are annotated, you will also have to configure corresponding [FederatedTypeResolver]s
9
9
that are used to instantiate federated objects and finally generate the schema using `toFederatedSchema` function
Copy file name to clipboardExpand all lines: website/docs/getting-started.mdx
+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
@@ -51,7 +51,7 @@ See the docs in [Schema Generator Getting Started](./schema-generator/schema-gen
51
51
52
52
Using `graphql-kotlin-federation`, you can generate an [Apollo Federation](https://www.apollographql.com/docs/apollo-server/federation/federation-spec/) compliant schema.
53
53
54
-
See the docs in [Apollo Federation](./federated/apollo-federation.md).
54
+
See the docs in [Apollo Federation](./schema-generator/federation/apollo-federation.md).
@@ -33,7 +31,6 @@ Mojo can also be configured in your Maven build file
33
31
</execution>
34
32
</executions>
35
33
</plugin>
36
-
37
34
```
38
35
39
36
By default, `download-sdl` goal will be executed as part of the `generate-sources`[build lifecycle phase](https://maven.apache.org/guides/introduction/introduction-to-the-lifecycle.html).
@@ -44,15 +41,12 @@ Introspection Mojo requires target GraphQL server `endpoint` to be specified. Ta
44
41
command line by explicitly specifying `graphql.endpoint` property
@@ -68,7 +62,6 @@ Mojo can also be configured in your Maven build file
68
62
</execution>
69
63
</executions>
70
64
</plugin>
71
-
72
65
```
73
66
74
67
By default, `introspect-schema` goal will be executed as part of the `generate-sources`[build lifecycle phase](https://maven.apache.org/guides/introduction/introduction-to-the-lifecycle.html).
@@ -80,16 +73,13 @@ generated under specified `packageName`. When using default configuration and st
80
73
directories, task can be executed directly from the command line by explicitly providing required properties.
0 commit comments