@evefrontier/dapp-kit - v0.0.1
    Preparing search index...

    Interface GraphQLResponse<T>

    GraphQL response types for Sui object queries

    interface GraphQLResponse<T = unknown> {
        data?: T;
        errors?: { message: string }[];
    }

    Type Parameters

    • T = unknown
    Index

    Properties

    Properties

    data?: T
    errors?: { message: string }[]