gitlab-ce/spec/graphql/types
Bob Van Landuyt 406808583c Render GFM html in GraphQL
This adds a `markdown_field` to our types.

Using this helper will render a model's markdown field using the
existing `MarkupHelper` with the context of the GraphQL query
available to the helper.

Having the context available to the helper is needed for redacting
links to resources that the current user is not allowed to see.

Because rendering the HTML can cause queries, the complexity of a
these fields is raised by 5 above the default.

The markdown field helper can be used as follows:

      ```
      markdown_field :note_html, null: false
      ```

This would generate a field that will render the markdown field `note`
of the model. This could be overridden by adding the `method:`
argument. Passing a symbol for the method name:

      ```
      markdown_field :body_html, null: false, method: :note
      ```

It will have this description by default:

> The GitLab Flavored Markdown rendering of `note`

This could be overridden by passing a `description:` argument.

The type of a `markdown_field` is always `GraphQL::STRING_TYPE`.
2019-06-20 08:02:33 +00:00
..
ci Add merge request popover with details 2019-03-21 10:24:18 -04:00
notes Render GFM html in GraphQL 2019-06-20 08:02:33 +00:00
permission_types Expose comments on Noteables in GraphQL 2019-06-14 12:36:27 +02:00
tree Add LFS blob ID to GraphQL blob type 2019-06-10 09:05:44 +01:00
base_field_spec.rb Use :complexity_multiplier only with connections 2019-06-05 10:17:54 -05:00
group_type_spec.rb Basic GraphQL for a group 2019-04-23 11:16:05 -05:00
issuable_state_enum_spec.rb
issue_state_enum_spec.rb
issue_type_spec.rb Render GFM html in GraphQL 2019-06-20 08:02:33 +00:00
label_type_spec.rb Render GFM html in GraphQL 2019-06-20 08:02:33 +00:00
merge_request_state_enum_spec.rb
merge_request_type_spec.rb Render GFM html in GraphQL 2019-06-20 08:02:33 +00:00
metadata_type_spec.rb
milestone_type_spec.rb GraphQL Type authorization 2019-04-03 14:36:33 +13:00
mutation_type_spec.rb
namespace_type_spec.rb Render GFM html in GraphQL 2019-06-20 08:02:33 +00:00
project_statistics_type_spec.rb Expose wiki_size on GraphQL API 2019-06-04 12:11:41 +00:00
project_type_spec.rb Render GFM html in GraphQL 2019-06-20 08:02:33 +00:00
query_type_spec.rb Add Namespace and ProjectStatistics to GraphQL API 2019-06-03 12:01:32 +02:00
repository_type_spec.rb Added repository files to GraphQL API 2019-05-22 12:43:35 +01:00
time_type_spec.rb
user_type_spec.rb GraphQL Type authorization 2019-04-03 14:36:33 +13:00