https://github.com/maxdeviant/linear-sdk
A Linear SDK for Rust
https://github.com/maxdeviant/linear-sdk
Last synced: 11 months ago
JSON representation
A Linear SDK for Rust
- Host: GitHub
- URL: https://github.com/maxdeviant/linear-sdk
- Owner: maxdeviant
- License: mit
- Created: 2022-10-29T15:17:16.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-08-19T22:47:19.000Z (over 1 year ago)
- Last Synced: 2025-04-06T00:32:01.368Z (11 months ago)
- Language: Rust
- Size: 164 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# linear_sdk
A Linear SDK for Rust.
## Development
### Update GraphQL Schema
```
graphql-client introspect-schema https://api.linear.app/graphql --output schema.json
```
### Run GraphQL Codegen
```
graphql-client generate --schema-path=schema.json --custom-scalars-module='crate::graphql::custom_scalars' --response-derives='Debug' --output-directory crates/linear_sdk/src/graphql/generated/ crates/linear_sdk/src/graphql/issue.graphql
```