Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: operation check overrides #516

Merged
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
4ea17ca
feat: operation check overrides
thisisnithin Feb 13, 2024
b651b9e
update
thisisnithin Feb 13, 2024
1f666da
Merge branch 'main' into nithin/eng-4480-make-schema-check-override-w…
thisisnithin Feb 13, 2024
3556445
fix update
thisisnithin Feb 13, 2024
7fabe23
improve db structure
thisisnithin Feb 13, 2024
80d4d5e
improve
thisisnithin Feb 14, 2024
167ef70
wip consolidated view
thisisnithin Feb 14, 2024
fb3252d
wip
thisisnithin Feb 14, 2024
29d7787
update
thisisnithin Feb 14, 2024
3a9a56c
Merge branch 'main' into nithin/eng-4480-make-schema-check-override-w…
thisisnithin Feb 14, 2024
856ee35
improve
thisisnithin Feb 14, 2024
2dd3d51
Merge branch 'main' into nithin/eng-4480-make-schema-check-override-w…
thisisnithin Feb 15, 2024
c8fbf2c
improve
thisisnithin Feb 15, 2024
2380f49
improve
thisisnithin Feb 15, 2024
dfb7cf1
improve
thisisnithin Feb 15, 2024
faccccb
improve
thisisnithin Feb 15, 2024
7feab61
revert schema changes
thisisnithin Feb 15, 2024
9c1ecf0
add tests
thisisnithin Feb 15, 2024
550bc83
fix import
thisisnithin Feb 15, 2024
63c52db
improve
thisisnithin Feb 15, 2024
87d7560
improve
thisisnithin Feb 15, 2024
cfec6cb
Merge branch 'main' into nithin/eng-4480-make-schema-check-override-w…
thisisnithin Feb 15, 2024
e959ce9
improve
thisisnithin Feb 15, 2024
41e0867
improve
thisisnithin Feb 15, 2024
f0540b0
fix
thisisnithin Feb 15, 2024
052e8af
use tanstack table
thisisnithin Feb 15, 2024
6fab6fd
improve
thisisnithin Feb 15, 2024
08bc639
update test
thisisnithin Feb 16, 2024
5ecae6f
Merge branch 'main' into nithin/eng-4480-make-schema-check-override-w…
thisisnithin Feb 16, 2024
bc1367c
improve
thisisnithin Feb 16, 2024
6c9d8e4
Merge branch 'main' into nithin/eng-4480-make-schema-check-override-w…
thisisnithin Feb 16, 2024
6d58917
update clickhouse version
thisisnithin Feb 16, 2024
4430610
upgrade vitest
thisisnithin Feb 16, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update
  • Loading branch information
thisisnithin committed Feb 13, 2024
commit b651b9eead8593c3a4d7923dd1c1ab43866a9c5c
4 changes: 2 additions & 2 deletions demo/pkg/subgraphs/employees/subgraph/schema.graphqls
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
type Query {
employee(id: Int!): Employee
employees: [Employee]
employees: [Employee!]!
products: [Products!]!
teammates(team: Department!): [Employee!]!
}
Expand Down Expand Up @@ -80,7 +80,7 @@ type Employee implements Identifiable @key(fields: "id") {
details: Details! @shareable
id: Int!
tag: String!
role: RoleType
role: RoleType!
notes: String
updatedAt: String!
startDate: String! @requiresScopes(scopes: [["read:employee", "read:private"], ["read:all"]])
Expand Down
Loading