Format IID as uppercase in GraphQL style guide

parent 795b4598
...@@ -611,7 +611,7 @@ descriptions: ...@@ -611,7 +611,7 @@ descriptions:
Example: Example:
```ruby ```ruby
field :id, GraphQL::ID_TYPE, description: 'ID of the Issue' field :id, GraphQL::ID_TYPE, description: 'ID of the issue'
field :confidential, GraphQL::BOOLEAN_TYPE, description: 'Indicates the issue is confidential' field :confidential, GraphQL::BOOLEAN_TYPE, description: 'Indicates the issue is confidential'
field :closed_at, Types::TimeType, description: 'Timestamp of when the issue was closed' field :closed_at, Types::TimeType, description: 'Timestamp of when the issue was closed'
``` ```
...@@ -1190,7 +1190,7 @@ argument :project_path, GraphQL::ID_TYPE, ...@@ -1190,7 +1190,7 @@ argument :project_path, GraphQL::ID_TYPE,
argument :iid, GraphQL::STRING_TYPE, argument :iid, GraphQL::STRING_TYPE,
required: true, required: true,
description: "The iid of the merge request to mutate" description: "The IID of the merge request to mutate"
argument :wip, argument :wip,
GraphQL::BOOLEAN_TYPE, GraphQL::BOOLEAN_TYPE,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment