Sha256: 9e4b5b0968fe74b26086a8e2432356511264cad66cff57fb66f42bd2c0317618
Contents?: true
Size: 437 Bytes
Versions: 38
Compression:
Stored size: 437 Bytes
Contents
# frozen_string_literal: true module Decidim module Core ScopeApiType = GraphQL::ObjectType.define do name "Scope" description "A scope" field :id, !types.ID field :name, !TranslatedFieldType, "The name of this scope." field :children, !types[Decidim::Core::ScopeApiType], "Descendants of this scope" field :parent, Decidim::Core::ScopeApiType, "This scope's parent scope." end end end
Version data entries
38 entries across 38 versions & 1 rubygems