File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed
src/graphql/schemas/inputs Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -813,8 +813,10 @@ input OrderSortOptions {
813813
814814input OrderWhereInput {
815815 chainId : BigIntSearchOptions
816+ currency : StringSearchOptions
816817 hypercert_id : StringSearchOptions
817818 id : IdSearchOptions
819+ invalidated : BooleanSearchOptions
818820 signer : StringSearchOptions
819821}
820822
Original file line number Diff line number Diff line change 44 IdSearchOptions ,
55 BigIntSearchOptions ,
66 StringSearchOptions ,
7+ BooleanSearchOptions ,
78} from "./searchOptions.js" ;
89import { Order } from "../typeDefs/orderTypeDefs.js" ;
910
@@ -17,4 +18,8 @@ export class BasicOrderWhereInput implements WhereOptions<Order> {
1718 signer ?: StringSearchOptions | null ;
1819 @Field ( ( ) => StringSearchOptions , { nullable : true } )
1920 hypercert_id ?: StringSearchOptions | null ;
21+ @Field ( ( ) => BooleanSearchOptions , { nullable : true } )
22+ invalidated ?: BooleanSearchOptions | null ;
23+ @Field ( ( ) => StringSearchOptions , { nullable : true } )
24+ currency ?: StringSearchOptions | null ;
2025}
You can’t perform that action at this time.
0 commit comments