async-graphql/docs/en/src/apollo_federation.md

94 lines
3.5 KiB
Markdown
Raw Normal View History

2020-04-15 03:15:30 +00:00
# Apollo Federation
2020-05-09 22:37:31 +00:00
2020-09-01 05:47:22 +00:00
`Apollo Federation` is a `GraphQL` API gateway which can combine multiple GraphQL services, allowing each service to implement the subset of the API it is responsible for. You can read more in the [official documentation](https://www.apollographql.com/docs/apollo-server/federation/introduction).
2020-05-09 22:37:31 +00:00
2022-09-22 15:34:49 +00:00
`Async-graphql` supports all the functionality of `Apollo Federation v2`, but some modifications to your `Schema` are required.
2020-05-09 22:37:31 +00:00
- You can use the `extends` property declaration on `async_graphql::Object` and `async_graphql::Interface` to extend a type offered by another implementing service.
- The `external` property declares that a field comes from another service。
2021-02-06 08:38:45 +00:00
- The `provides` directive is used to annotate the expected returned fieldset from a field on a base type that is guaranteed to be selectable by the gateway.
- The `requires` directive is used to annotate the required input fieldset from a base type for a resolver. It is used to develop a query plan where the required fields may not be needed by the client, but the service may need additional information from other services.
2020-05-09 22:37:31 +00:00
- The `shareable` directive is used to indicate that an object type's field is allowed to be resolved by multiple subgraphs (by default, each field can be resolved by only one subgraph).
- The `inaccessible` directive is used to indicate that a location in the schema cannot be queried at the supergraph level, but can still be queried at the subgraph level.
2022-08-22 09:52:05 +00:00
- The `tag` directive is used to provide a mechanism for applying arbitrary string metadata to the fields and types of a schema. Tags will be propagated up into composed supergraphs.
- The `override` directive is used to indicate that a field is now to be resolved by the current subgraph instead of the named subgraph.
2020-06-19 05:03:17 +00:00
## Entity lookup function
2020-05-09 22:37:31 +00:00
```rust
# extern crate async_graphql;
# use async_graphql::*;
# #[derive(SimpleObject)]
# struct User { id: ID }
2020-05-09 22:37:31 +00:00
struct Query;
#[Object]
2020-05-09 22:37:31 +00:00
impl Query {
#[graphql(entity)]
2020-05-09 22:37:31 +00:00
async fn find_user_by_id(&self, id: ID) -> User {
User { id }
2020-05-09 22:37:31 +00:00
}
#[graphql(entity)]
2020-09-28 09:44:00 +00:00
async fn find_user_by_id_with_username(&self, #[graphql(key)] id: ID, username: String) -> User {
User { id }
2020-06-19 05:03:17 +00:00
}
2020-05-09 22:37:31 +00:00
#[graphql(entity)]
2020-06-19 05:03:17 +00:00
async fn find_user_by_id_and_username(&self, id: ID, username: String) -> User {
User { id }
2020-06-19 05:03:17 +00:00
}
2020-05-09 22:37:31 +00:00
}
```
2020-06-19 05:03:17 +00:00
**Notice the difference between these three lookup functions, which are all looking for the `User` object.**
2020-09-01 05:47:22 +00:00
- `find_user_by_id`
2020-06-19 05:03:17 +00:00
2020-09-01 05:47:22 +00:00
Use `id` to find an `User` object, the key for `User` is `id`.
2020-06-19 05:03:17 +00:00
2020-09-01 05:47:22 +00:00
- `find_user_by_id_with_username`
2020-06-19 05:03:17 +00:00
2020-09-01 05:47:22 +00:00
Use `id` to find an `User` object, the key for `User` is `id`, and the `username` field value of the `User` object is requested.
2020-06-19 05:03:17 +00:00
2020-09-01 05:47:22 +00:00
- `find_user_by_id_and_username`
2020-06-19 05:03:17 +00:00
2020-09-01 05:47:22 +00:00
Use `id` and `username` to find an `User` object, the keys for `User` are `id` and `username`.
2020-06-19 05:03:17 +00:00
2020-09-01 05:47:22 +00:00
For a complete example, refer to: <https://github.com/async-graphql/examples/tree/master/federation>.
2021-02-22 01:52:41 +00:00
## Defining a compound primary key
A single primary key can consist of multiple fields, and even nested fields, you can use `InputObject` to implements a nested primary key.
In the following example, the primary key of the `User` object is `key { a b }`.
```rust
# extern crate async_graphql;
# use async_graphql::*;
# #[derive(SimpleObject)]
# struct User { id: i32 }
2021-02-22 01:52:41 +00:00
#[derive(InputObject)]
struct NestedKey {
a: i32,
b: i32,
}
struct Query;
#[Object]
impl Query {
#[graphql(entity)]
2021-02-22 01:52:41 +00:00
async fn find_user_by_key(&self, key: NestedKey) -> User {
User { id: key.a }
2021-02-22 01:52:41 +00:00
}
}
```