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

    Interface GraphQLResponse<T>

    Response wrapper for GraphQL with optional data and errors.

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

    Type Parameters

    • T = unknown
    Index

    Properties

    Properties

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