Skip to main content

XGIC GitLab GraphQL Client

License CI PyPI Python Release

XGIC GitLab GraphQL Client (xgic-gitlab-graphql) — a clean, extensible, Python-first client for GitLab’s GraphQL API (namespace: xgic.gitlab.graphql).

Goal: Replace fragile CLI-based automation (glab) with a reliable, strongly-typed Python library that Grok Build (and humans) can use comfortably. Start with Issues + child Tasks (proper Work Item hierarchy), Merge Requests, Labels, Milestones, and Releases. Designed from day one to grow into full GraphQL coverage and structured data (estimates, actuals, etc.).

Why this exists

  • Official GitLab CLI escaping problems with long descriptions and complex content
  • Need for real hierarchical Tasks instead of Markdown checklists
  • Desire to move work data into structured, queryable fields
  • Grok Build works best when it can simply import a well-designed Python library

Key features (phase 1)

  • High-level methods: create_issue(), create_task(parent_id), create_issue_with_tasks(), create_merge_request()
  • Proper parent-child Task hierarchy via GitLab Work Items
  • Clean data models (Issue, Task, MergeRequest) instead of raw dicts
  • Centralized error handling and GraphQL execution
  • Minimal dependencies (just requests)
  • Cross-platform (Windows + Linux)
  • Easy to install and reuse across projects

Testing

See TESTING.md for unit vs opt-in integration tests and the env contract (GITLAB_URL, GITLAB_TOKEN).

Installation

Primary path for Grok Build and all consumers — install the published package from PyPI:

uv pip install xgic-gitlab-graphql
# optional: pin for automation (use the current version from PyPI / the badge above)
# uv pip install "xgic-gitlab-graphql==X.Y.Z"

Do not hardcode package versions in long-lived docs. Prefer the unpinned install or pin to the current release shown by the PyPI badge / project page.

Development (editable)

Editable installs are for working on this repository only (not the default for agents or production automation):

git clone https://github.com/xgic/gitlab-graphql.git
cd gitlab-graphql
uv pip install -e ".[dev]"

Python 3.14+ required. Build/smoke with uv. Official releases use OIDC Trusted Publishing (python-package-release.md). No Makefiles.

Compatibility

See docs/COMPATIBILITY.md for:

  • Minimum supported version = GitLab EE (aligned with GitLab’s maintenance policy; validated against current stable EE with a released PyPI client)
  • Preferred client package pin for automation (current PyPI version — not hard-coded here) vs GitLab EE support floor
  • Policy: do not ship client changes solely to support outdated self-managed EE pins

Quick start (Python)

from xgic.gitlab.graphql import GitLabClient

client = GitLabClient(
    token="glpat-xxxxxxxxxxxxxxxxxxxx",
    url="https://gitlab.com"   # or your self-hosted instance
)

# Create a parent issue
issue = client.create_issue(
    title="Implement new reporting feature",
    description="High-level description here...",
    namespace_path="group/project",
    labels=["feature", "backend"],
)

# Create child tasks under it
task1 = client.create_task(
    parent_id=issue.id,
    title="Design database schema",
    description="...",
    namespace_path="group/project",
)

task2 = client.create_task(
    parent_id=issue.id,
    title="Implement API endpoints",
    namespace_path="group/project",
)

print(f"Issue created: {issue.web_url}")
print(f"Tasks created under it.")

Recommended for Grok Build: Use the convenience method create_issue_with_tasks(...) whenever possible.

Project Structure

See docs/ARCHITECTURE.md and docs/development-workflow.md for layout and responsibilities.

Documentation

Engineering Tooling Philosophy

  • Build backend: hatchling (namespace packages, uv)
  • Environment / packaging: uv + pip
  • Linting / formatting: ruff (Google docstrings)
  • Type checking: pyright (strict)
  • Testing: pytest
  • Primary interface: Python library (import, not CLI)

Follows XGIC CLI standard + no Makefiles noted throughout.

Status

Core client implemented (auth, queries/mutations for work items hierarchy + pagination, models, common queries). Base standards in place. Phase 1 complete for initial use cases.

See CHANGELOG.md for details.

Multi-repo standards

Portfolio standards, ADRs, and community health:

License

Copyright 2026 XGIC.
Licensed under the Apache License, Version 2.0.
See NOTICE.

Contributing

See CONTRIBUTING.md. Use GitHub Flow: issue-named branches, Conventional Commits, human review in the GitHub UI before merge to main.

Release files for xgic-gitlab-graphql 0.1.4

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for xgic-gitlab-graphql 0.1.4
File Size Uploaded
xgic_gitlab_graphql-0.1.4.tar.gz 22.5 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for xgic-gitlab-graphql 0.1.4
File Interpreter ABI Platform
xgic_gitlab_graphql-0.1.4-py3-none-any.whl Python 3 none any Details

Total release size: 47.8 kB

Release files / xgic_gitlab_graphql-0.1.4.tar.gz

Download URL xgic_gitlab_graphql-0.1.4.tar.gz
Size 22.5 kB
Tags Source
SHA-256 checksum
How to use checksums
60b10d83259c94e33a917e31763ecfa8a341f7b18c43b95072f371672c4ca051
BLAKE2b-256 checksum
How to use checksums
0768bc8837810af6b49979f28e057261b9544b91eb1801360ba7e7b2ca40118d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 3, 2026.

Transparency log

Release files / xgic_gitlab_graphql-0.1.4-py3-none-any.whl

Download URL xgic_gitlab_graphql-0.1.4-py3-none-any.whl
Size 25.3 kB
Tags Python 3
SHA-256 checksum
How to use checksums
38e7600cee2aa9859844e1909424c10ba89a4978b64fa426cbb7bd4ced9a571c
BLAKE2b-256 checksum
How to use checksums
62ce01356f57cf240b3bcee72237e680436e9fc330ed66ff276b6701acea039c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 3, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

0.1.4 This release

2 release files

0.1.3

2 release files

0.1.2

2 release files

0.1.1

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page