api_graphql_styleguide.md 3.8 KB
Newer Older
B
Bob Van Landuyt 已提交
1 2 3 4
# GraphQL API

## Authentication

5 6
Authentication happens through the `GraphqlController`, right now this
uses the same authentication as the Rails application. So the session
B
Bob Van Landuyt 已提交
7 8 9 10 11 12 13
can be shared.

It is also possible to add a `private_token` to the querystring, or
add a `HTTP_PRIVATE_TOKEN` header.

### Authorization

14
Fields can be authorized using the same abilities used in the Rails
B
Bob Van Landuyt 已提交
15 16 17
app. This can be done using the `authorize` helper:

```ruby
18 19 20
module Types
  class QueryType < BaseObject
    graphql_name 'Query'
B
Bob Van Landuyt 已提交
21

22 23
    field :project, Types::ProjectType, null: true, resolver: Resolvers::ProjectResolver do
      authorize :read_project
B
Bob Van Landuyt 已提交
24 25 26 27 28 29
    end
  end
```

The object found by the resolve call is used for authorization.

30 31 32
This works for authorizing a single record, for authorizing
collections, we should only load what the currently authenticated user
is allowed to view. Preferably we use our existing finders for that.
B
Bob Van Landuyt 已提交
33 34 35 36 37 38 39 40 41 42 43

## Types

When exposing a model through the GraphQL API, we do so by creating a
new type in `app/graphql/types`.

When exposing properties in a type, make sure to keep the logic inside
the definition as minimal as possible. Instead, consider moving any
logic into a presenter:

```ruby
44
class Types::MergeRequestType < BaseObject
B
Bob Van Landuyt 已提交
45 46 47 48 49 50 51 52 53 54 55 56
  present_using MergeRequestPresenter

  name 'MergeRequest'
end
```

An existing presenter could be used, but it is also possible to create
a new presenter specifically for GraphQL.

The presenter is initialized using the object resolved by a field, and
the context.

57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
### Exposing permissions for a type

To expose permissions the current user has on a resource, you can call
the `expose_permissions` passing in a separate type representing the
permissions for the resource.

For example:

```ruby
module Types
  class MergeRequestType < BaseObject
    expose_permissions Types::MergeRequestPermissionsType
  end
end
```

The permission type inherits from `BasePermissionType` which includes
some helper methods, that allow exposing permissions as non-nullable
booleans:

```ruby
class MergeRequestPermissionsType < BasePermissionType
  present_using MergeRequestPresenter

  graphql_name 'MergeRequestPermissions'

  abilities :admin_merge_request, :update_merge_request, :create_note

  ability_field :resolve_note,
                description: 'Whether or not the user can resolve disussions on the merge request'
  permission_field :push_to_source_branch, method: :can_push_to_source_branch?
end
```

- **`permission_field`**: Will act the same as `graphql-ruby`'s
  `field` method but setting a default description and type and making
  them non-nullable. These options can still be overridden by adding
  them as arguments.
- **`ability_field`**: Expose an ability defined in our policies. This
  takes behaves the same way as `permission_field` and the same
  arguments can be overridden.
- **`abilities`**: Allows exposing several abilities defined in our
  policies at once. The fields for these will all have be non-nullable
  booleans with a default description.

102 103 104 105 106 107 108 109 110 111 112 113 114 115
## Resolvers

To find objects to display in a field, we can add resolvers to
`app/graphql/resolvers`.

Arguments can be defined within the resolver, those arguments will be
made available to the fields using the resolver.

We already have a `FullPathLoader` that can be included in other
resolvers to quickly find Projects and Namespaces which will have a
lot of dependant objects.

To limit the amount of queries performed, we can use `BatchLoader`.

B
Bob Van Landuyt 已提交
116 117 118
## Testing

_full stack_ tests for a graphql query or mutation live in
119
`spec/requests/api/graphql`.
B
Bob Van Landuyt 已提交
120 121

When adding a query, the `a working graphql query` shared example can
122 123 124 125 126
be used to test if the query renders valid results.

Using the `GraphqlHelpers#all_graphql_fields_for`-helper, a query
including all available fields can be constructed. This makes it easy
to add a test rendering all possible fields for a query.