I'am trying this get github issues by their ids through graphql endpoints
And tried this code
{
repository(name: "reponame", owner: "ownername") {
issue1: issue(number: 2) {
title
createdAt
}
issue2: issue(number: 3) {
…
I'm using GithubAuthProvider with the added scope repo to get the user's access token which is later used to access the GitHub GraphQL API (the GitHub App has the permissions for Contents and Metadata set to Read-only).
The problem is when I'm…
According to the documentation, I used this code to build a query:
var query = new Query()
.Repository("some_repo", "MuziburRahman")
.Select(r => new
{
r.Name,
r.Description,
Issues = r.Issues(100, null, null, null, null, null,…
if you sign into https://developer.github.com/v4/explorer/
and run this query
{
search(query: "org:ruby is:pr merged:<2019-07-11", type: ISSUE, last: 5) {
edges {
node {
... on PullRequest {
url
mergedAt
…
I'm trying to query GitHub's GraphQL API (v4). What GraphQL query for this API can be used to get all of the commits I've contributed to a particular public repo?
I have searched high and low, but I can't find anything telling me how to enable GitHub Vulnerability alerts through their API. I conversely can't find anything saying it's not supported.
Does anyone know where I can find the API documentation if it…
I have defined a mutation like below with email field marked as mandatory
type Mutation {
bookTicket (person: PersonInput! ,email: String!): Ticket
}
input PersonInput{
personId: ID!
name: String!
date: String!
comment:…
I want to create query with multi options for parameter
Example:
My query is query ($username: String, $phone: String, $name: String)
When work I can type:
`query (username: "08789456")`
or
query (username: "08789456", name: "Ryan")
It can…
I tested the following query in a Neo4j browser and it worked. Now I am trying to define a schema and query for a React app using the neo4j-graphql-js plugin/driver (import { neo4jgraphql } from "neo4j-graphql-js";). My issue is I do not know how…
Im trying to get list of repositories and pull requests where the author is selected user.
I tried out this
{
user(login:"s8sachin"){
repositories(first: 100){
nodes{
name
pullRequests{
totalCount // this gives…
I want to create a react web app that outputs data from github with the GitHub graphql API. So I used a method that I used in creating a weather web app which still uses graphql and react but my app throws an error because the data cannot be…