Sha256: 97f52c5cd16d30d8d0f1841f187fb304583977f0a6d9279f321cf89962408614
Contents?: true
Size: 610 Bytes
Versions: 40
Compression:
Stored size: 610 Bytes
Contents
# frozen_string_literal: true module Decidim # This interface represents an author who owns a resource. AuthorInterface = GraphQL::InterfaceType.define do name "Author" description "An author" field :name, !types.String, "The author's name" field :avatarUrl, !types.String, "The author's avatar url" field :isVerified, !types.Boolean, "Whether the author is verified or not" field :deleted, !types.Boolean, "Whether the author's account has been deleted or not" field :isUser, !types.Boolean, "Whether the author is a user or another kind of author (User Group)" end end
Version data entries
40 entries across 40 versions & 2 rubygems