Skip to content

feat: Add raw GraphQL query command#40

Closed
mattatcha wants to merge 1 commit intolinearis-oss:mainfrom
mattatcha:feat/graphql-command
Closed

feat: Add raw GraphQL query command#40
mattatcha wants to merge 1 commit intolinearis-oss:mainfrom
mattatcha:feat/graphql-command

Conversation

@mattatcha
Copy link
Copy Markdown

Summary

Adds linearis graphql command for executing custom GraphQL queries against the Linear API.

Usage

# Inline query
linearis graphql '{ viewer { id name } }'

# From file
linearis graphql --file query.graphql

# With variables
linearis graphql 'query($id: String!) { issue(id: $id) { title } }' --vars '{"id": "uuid"}'

# From stdin
echo '{ viewer { id } }' | linearis graphql

Closes #31

Adds `linearis graphql` command for executing custom GraphQL queries
against the Linear API. Supports inline queries, file input (--file),
stdin piping, and variables (--vars).

Closes czottmann#31
@iamfj
Copy link
Copy Markdown
Collaborator

iamfj commented Apr 7, 2026

Thanks for adding the raw GraphQL command, @mattatcha!

Since this was opened, the project went through a complete architecture rewrite (#49) with a new five-layer design and GraphQL codegen. This PR is no longer compatible with the current structure.

Closing this PR, but the feature request in #31 is still open. The new architecture actually makes this kind of feature easier to add — if you're interested in picking it back up, check out the current patterns in AGENTS.md.

Thanks for contributing! 🙏

@iamfj iamfj closed this Apr 7, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Feature: Add raw GraphQL query command

2 participants