File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
src/graphql/schemas/typeDefs Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 11import { Field , ObjectType } from "type-graphql" ;
22import { EthBigInt } from "../../scalars/ethBigInt.js" ;
33import { BasicTypeDef } from "./baseTypes/basicTypeDef.js" ;
4- import { HypercertBaseType } from "./baseTypes/hypercertBaseType.js" ;
54import { DataResponse } from "../../../lib/graphql/DataResponse.js" ;
5+ import { HypercertWithMetadata } from "./hypercertTypeDefs.js" ;
6+ import { HypercertBaseType } from "./baseTypes/hypercertBaseType.js" ;
67
78@ObjectType ( )
89export class Sale extends BasicTypeDef {
@@ -51,7 +52,7 @@ export class Sale extends BasicTypeDef {
5152 } )
5253 creation_block_timestamp ?: bigint | number | string ;
5354
54- @Field ( ( ) => HypercertBaseType , {
55+ @Field ( ( ) => HypercertWithMetadata , {
5556 nullable : true ,
5657 description : "The hypercert associated with this order" ,
5758 } )
You can’t perform that action at this time.
0 commit comments