Module: Static::AddOAuthList

Defined in:
lib/static.rb

Constant Summary collapse

Name =
"AddOAuthList"
Query =
<<-EOS
  mutation AddOAuthList($options: OAuthListUpdateInput, $fields: [OAuthListFieldsFormUpdateInput]){
  AddOAuthList(options: $options, fields: $fields){
      _id
      name
      alias
      image
      description
      enabled
      url
      client
      user
      oAuthUrl
      wxappLogo
      fields{
          label
          type
          placeholder
          value
          checked
      }
      oauth{
          _id
          name
          alias
          image
          description
          enabled
          url
          client
          user
          oAuthUrl
          wxappLogo
      }
  }
}
EOS