Skip to content

Commit

Permalink
fix: require attributes in bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
tokebe committed Sep 9, 2024
1 parent 477361d commit a3a6128
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/types/src/trapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,12 +97,12 @@ export interface TrapiAttributeConstraint {
export interface TrapiNodeBinding {
id: string;
query_id?: string;
attributes?: TrapiAttribute[];
attributes: TrapiAttribute[];
}

export interface TrapiEdgeBinding {
id: string;
attributes?: TrapiAttribute[];
attributes: TrapiAttribute[];
}

export interface TrapiAnalysis {
Expand Down

0 comments on commit a3a6128

Please sign in to comment.