Sha256: 618310425f65875ed07af0a9c6aac8d88984ffe887eb1fddb580c461d4799e5b

Contents?: true

Size: 489 Bytes

Versions: 5

Compression:

Stored size: 489 Bytes

Contents

# frozen_string_literal: true

require 'graphql'

module Osso
  module GraphQL
    module Types
      class OAuthClient < Types::BaseObject
        description 'An OAuth client used to consume Osso SAML users'
        implements ::GraphQL::Types::Relay::Node

        global_id_field :gid
        field :id, ID, null: false
        field :name, String, null: false
        field :client_id, String, null: false
        field :client_secret, String, null: false
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
osso-0.0.3.8 lib/osso/graphql/types/oauth_client.rb
osso-0.0.3.7 lib/osso/graphql/types/oauth_client.rb
osso-0.0.3.6 lib/osso/graphql/types/oauth_client.rb
osso-0.0.3.5 lib/osso/graphql/types/oauth_client.rb
osso-0.0.3.4 lib/osso/graphql/types/oauth_client.rb