Sha256: 681332335e937fa430bc3a7355e97a6140e865f17e11d1d3f4be2a1ce5ce775a
Contents?: true
Size: 451 Bytes
Versions: 68
Compression:
Stored size: 451 Bytes
Contents
# frozen_string_literal: true module GraphQL class Schema class Directive < GraphQL::Schema::Member class SpecifiedBy < GraphQL::Schema::Directive description "Exposes a URL that specifies the behavior of this scalar." locations(GraphQL::Schema::Directive::SCALAR) default_directive true argument :url, String, description: "The URL that specifies the behavior of this scalar." end end end end
Version data entries
68 entries across 68 versions & 1 rubygems