Sha256: c4dddc44c5a48b1947725f1e3964234049927b16c536bce3b3adb1503e838146
Contents?: true
Size: 473 Bytes
Versions: 230
Compression:
Stored size: 473 Bytes
Contents
# frozen_string_literal: true module GraphQL class Schema class Member # These constants are interpreted as GraphQL types when defining fields or arguments # # @example # field :is_draft, Boolean, null: false # field :id, ID, null: false # field :score, Int, null: false # # @api private module GraphQLTypeNames Boolean = "Boolean" ID = "ID" Int = "Int" end end end end
Version data entries
230 entries across 230 versions & 2 rubygems