screwdriver-scm-github-graphql

1.1.2 • Public • Published

scm-github-graphql

Version Downloads Build Status Open Issues License

Usage

npm install screwdriver-scm-github-graphql

Initialization

The class interacts with (GitHub GraphQL API)[https://docs.github.com/en/enterprise-cloud@latest/graphql/overview/about-the-graphql-api] The following configuration is needed

Parameter Type Default Description
config Object Configuration Object
config.graphQlUrl String https://api.github.com/graphql Github GraphQL API Endpoint
const scm = new GithubScmGraphQL({
    graphQlUrl: 'https://api.github.com/graphql'
});

Methods

getEnterpriseUserAccount

Required parameters:

Parameter Type Description
schema Object The schema object
schema.slug String The github enterprise slug
schema.login String The github user's login name
schema.token String The github token to interact with the graphql api

Expected Outcome

Gets the enterprise user account based on schema https://docs.github.com/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseuseraccount

listEnterpriseMembers

Required parameters:

Parameter Type Description
schema Object The schema object
schema.slug String The github enterprise slug
schema.token String The github token to interact with the graphql api

Expected Outcome

This method retrieves a list of enterprise members based on schema https://docs.github.com/en/enterprise-cloud@latest/graphql/reference/unions#enterprisemember.

getUser

Required parameters:

Parameter Type Description
schema Object The schema object
schema.login String The github user's login name
schema.token String The github token to interact with the graphql api
Expected Outcome

Returns the github user based on schema https://docs.github.com/en/enterprise-cloud@latest/graphql/reference/objects#user

Testing

npm test

License

Code licensed under the BSD 3-Clause license. See LICENSE file for terms.

Readme

Keywords

Package Sidebar

Install

npm i screwdriver-scm-github-graphql

Weekly Downloads

53

Version

1.1.2

License

BSD-3-Clause

Unpacked Size

25.5 kB

Total Files

12

Last publish

Collaborators

  • screwdriver