Sha256: 6a60411b9457f729e2d2211a1621dcecb2c61e61080eca4e6a05c5592b3de884
Contents?: true
Size: 290 Bytes
Versions: 32
Compression:
Stored size: 290 Bytes
Contents
# frozen_string_literal: true module GraphQL module Introspection SchemaField = GraphQL::Field.define do name("__schema") description("This GraphQL schema") type(!GraphQL::Introspection::SchemaType) resolve ->(o, a, ctx) { ctx.query.schema } end end end
Version data entries
32 entries across 32 versions & 1 rubygems