Skip to content

Commit

Permalink
Update schema
Browse files Browse the repository at this point in the history
  • Loading branch information
simfeld committed Apr 12, 2024
1 parent 0a0c6d9 commit 2cd541f
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions spec/support/graphiti/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -348,6 +348,12 @@
"readable": true,
"writable": false,
"description": null
},
"advisor_id": {
"type": "integer",
"readable": true,
"writable": false,
"description": null
}
},
"extra_attributes": {
Expand Down Expand Up @@ -394,6 +400,21 @@
"not_match"
]
},
"number": {
"type": "string",
"operators": [
"eq",
"not_eq",
"eql",
"not_eql",
"prefix",
"not_prefix",
"suffix",
"not_suffix",
"match",
"not_match"
]
},
"updated_at": {
"type": "datetime",
"operators": [
Expand Down Expand Up @@ -431,6 +452,17 @@
"eq"
],
"single": true
},
"advisor_id": {
"type": "integer",
"operators": [
"eq",
"not_eq",
"gt",
"gte",
"lt",
"lte"
]
}
},
"relationships": {
Expand All @@ -443,6 +475,11 @@
"type": "has_many",
"description": null,
"resource": "Event::DateResource"
},
"advisor": {
"type": "belongs_to",
"description": null,
"resource": "PersonResource"
}
},
"stats": {
Expand Down

0 comments on commit 2cd541f

Please sign in to comment.