Skip to content

Files

Latest commit

 

History

History
25 lines (17 loc) · 483 Bytes

GraphQL-FieldDescription.md

File metadata and controls

25 lines (17 loc) · 483 Bytes

Pattern: Missing field description

Issue: -

Description

Checks if each field has a description.

Examples

# good
class UserType < BaseType
  field :name, String, "Name of the user", null: true
end

# bad
class UserType < BaseType
  field :name, String, null: true
end

Further Reading