Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
10,235 changes: 2,678 additions & 7,557 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ packages:
- 'packages/*'
- 'pgpm/*'
- 'graphql/*'
- 'sdk/*'
- 'examples/*'
- 'uploads/*'
- 'postgres/*'
Expand Down
26 changes: 26 additions & 0 deletions sdk/constructive-sdk/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# GraphQL SDK

<p align="center" width="100%">
<img height="120" src="https://raw.githubusercontent.com/constructive-io/constructive/refs/heads/main/assets/outline-logo.svg" />
</p>

> @generated by @constructive-io/graphql-codegen - DO NOT EDIT

## APIs

| API | Endpoint | Generators | Docs |
|-----|----------|------------|------|
| admin | - | ORM | [./src/admin/README.md](./src/admin/README.md) |
| auth | - | ORM | [./src/auth/README.md](./src/auth/README.md) |
| objects | - | ORM | [./src/objects/README.md](./src/objects/README.md) |
| public | - | ORM | [./src/public/README.md](./src/public/README.md) |

---

Built by the [Constructive](https://constructive.io) team.

## Disclaimer

AS DESCRIBED IN THE LICENSES, THE SOFTWARE IS PROVIDED "AS IS", AT YOUR OWN RISK, AND WITHOUT WARRANTIES OF ANY KIND.

No developer or entity involved in creating this software will be liable for any claims or damages whatsoever associated with your use, inability to use, or your interaction with other users of the code, including any direct, indirect, incidental, special, exemplary, punitive or consequential damages, or loss of profits, cryptocurrencies, tokens, or anything else of value.
53 changes: 53 additions & 0 deletions sdk/constructive-sdk/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
{
"name": "@constructive-io/sdk",
"version": "0.0.1",
"author": "Constructive <developers@constructive.io>",
"description": "Constructive SDK - Auto-generated GraphQL types and ORM client",
"main": "index.js",
"module": "esm/index.js",
"types": "index.d.ts",
"homepage": "https://github.com/constructive-io/constructive",
"license": "MIT",
"publishConfig": {
"access": "public",
"directory": "dist"
},
"repository": {
"type": "git",
"url": "https://github.com/constructive-io/constructive"
},
"bugs": {
"url": "https://github.com/constructive-io/constructive/issues"
},
"scripts": {
"clean": "makage clean",
"prepack": "npm run build",
"build": "makage build",
"build:dev": "makage build --dev",
"generate": "tsx scripts/generate-sdk.ts",
"lint": "eslint . --fix",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch"
},
"keywords": [
"graphql",
"sdk",
"orm",
"constructive",
"postgraphile",
"schema-dir"
],
"dependencies": {
"@0no-co/graphql.web": "^1.1.2",
"@constructive-io/graphql-types": "workspace:^",
"gql-ast": "workspace:^",
"graphql": "^16.12.0"
},
"devDependencies": {
"@constructive-io/graphql-codegen": "workspace:^",
"@types/node": "^20.12.7",
"makage": "^0.1.12",
"tsx": "^4.19.0",
"typescript": "^5.9.3"
}
}
Loading