Tag: Gitlab
-
Download Gitlab’s graphql schema
2 I’m trying to get hold of gitlab_schema.graphql, i.e. the schema for Gitlab’s graphql API. Can’t find it anywhere, does anyone have any pointers? graphql gitlab Share Follow asked Sep 16, 2021 at 16:58 Fredrik JanssonFredrik Jansson 3,78433 gold badges3030 silver badges3333 bronze badges 5 Answers 5 Sorted by: Reset to default Highest score (default)…
-
Lead Digital GraphQL API Engineer – Alleare Consulting – Addison, TX
Alleare Consulting Addison, TX Depends on Experience Contract: W2 Skills Software Engineering Gitlab GraphQL Javascript Node . js React TypeScript e – commerce mobile API Job Description Lead Digital GraphQL API Engineer 12 month + contract Addison, Texas Hybrid 3537 IMMEDIATE NEW JOB OPENING for a Sr. Lead Platform Engineer to join our team…
-
GitLab: How to query history commits of certain branch with GraphQL
0 I’m trying to query the commit history of a project’s repository of certain branch with GraphQL, is this possible? And there is no related samples I can find in Gitlab docs, or did I have to use the REST API which is much more viable. I’ll be appreciated if anyone have any ideas about…
-
How to get all comments in a group filtered by author?
0 I have the following query { group(fullPath: "X") { issues { count } projects { nodes { name issues(sort: CREATED_DESC, state: opened ) { count edges { node { iid title description notes { nodes { id body author { name } } } } } } } } } } It gives me…