Skip to content

Commit

Permalink
Update graphiti schema
Browse files Browse the repository at this point in the history
  • Loading branch information
carlobeltrame committed Jul 23, 2024
1 parent 0d0ac55 commit 8aa963c
Showing 1 changed file with 79 additions and 60 deletions.
139 changes: 79 additions & 60 deletions spec/support/graphiti/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -2195,46 +2195,46 @@
"writable": true,
"description": null
},
"person_id": {
"type": "integer",
"created_at": {
"type": "datetime",
"readable": true,
"writable": false,
"description": null
},
"group_id": {
"type": "integer",
"updated_at": {
"type": "datetime",
"readable": true,
"writable": false,
"description": null
},
"label": {
"type": "string",
"deleted_at": {
"type": "datetime",
"readable": true,
"writable": false,
"description": null
},
"type": {
"type": "string",
"person_id": {
"type": "integer",
"readable": true,
"writable": false,
"writable": true,
"description": null
},
"created_at": {
"type": "datetime",
"group_id": {
"type": "integer",
"readable": true,
"writable": false,
"writable": true,
"description": null
},
"updated_at": {
"type": "datetime",
"type": {
"type": "string",
"readable": true,
"writable": false,
"writable": true,
"description": null
},
"deleted_at": {
"type": "datetime",
"label": {
"type": "string",
"readable": true,
"writable": false,
"writable": true,
"description": null
}
},
Expand All @@ -2243,19 +2243,19 @@
"sorts": {
"id": {
},
"person_id": {
"created_at": {
},
"group_id": {
"updated_at": {
},
"label": {
"deleted_at": {
},
"type": {
"person_id": {
},
"created_at": {
"group_id": {
},
"updated_at": {
"type": {
},
"deleted_at": {
"label": {
}
},
"filters": {
Expand All @@ -2270,6 +2270,39 @@
"lte"
]
},
"created_at": {
"type": "datetime",
"operators": [
"eq",
"not_eq",
"gt",
"gte",
"lt",
"lte"
]
},
"updated_at": {
"type": "datetime",
"operators": [
"eq",
"not_eq",
"gt",
"gte",
"lt",
"lte"
]
},
"deleted_at": {
"type": "datetime",
"operators": [
"eq",
"not_eq",
"gt",
"gte",
"lt",
"lte"
]
},
"person_id": {
"type": "integer",
"operators": [
Expand All @@ -2292,7 +2325,7 @@
"lte"
]
},
"label": {
"type": {
"type": "string",
"operators": [
"eq",
Expand All @@ -2307,7 +2340,7 @@
"not_match"
]
},
"type": {
"label": {
"type": "string",
"operators": [
"eq",
Expand All @@ -2321,39 +2354,6 @@
"match",
"not_match"
]
},
"created_at": {
"type": "datetime",
"operators": [
"eq",
"not_eq",
"gt",
"gte",
"lt",
"lte"
]
},
"updated_at": {
"type": "datetime",
"operators": [
"eq",
"not_eq",
"gt",
"gte",
"lt",
"lte"
]
},
"deleted_at": {
"type": "datetime",
"operators": [
"eq",
"not_eq",
"gt",
"gte",
"lt",
"lte"
]
}
},
"relationships": {
Expand Down Expand Up @@ -2579,6 +2579,25 @@
"resource": "PersonResource"
}
}
},
"/api/roles": {
"actions": {
"index": {
"resource": "RoleResource"
},
"create": {
"resource": "RoleResource"
},
"show": {
"resource": "RoleResource"
},
"update": {
"resource": "RoleResource"
},
"destroy": {
"resource": "RoleResource"
}
}
}
},
"types": {
Expand Down

0 comments on commit 8aa963c

Please sign in to comment.