Sha256: 3c30c61c6cffba7291428b5b4f6e6f71802f33d1717923e22be3660b2e6cf57f
Contents?: true
Size: 475 Bytes
Versions: 13
Compression:
Stored size: 475 Bytes
Contents
GraphQL::Introspection::InputValueType = GraphQL::ObjectType.define do name "__InputValue" description "An input for a field or InputObject" field :name, !types.String, "The key for this value" field :description, types.String, "What this value is used for" field :type, -> { !GraphQL::Introspection::TypeType }, "The expected type for this value" field :defaultValue, types.String, "The value applied if no other value is provided", property: :default_value end
Version data entries
13 entries across 13 versions & 1 rubygems