Type alias GetUserByIdQuery

GetUserByIdQuery: {
    __typename?: "Query";
    user?: {
        __typename?: "User";
        id: any;
        roles: {
            __typename?: "Role";
            description: string;
            id: string;
        }[];
    } | null;
}

Type declaration

  • Optional __typename?: "Query"
  • Optional user?: {
        __typename?: "User";
        id: any;
        roles: {
            __typename?: "Role";
            description: string;
            id: string;
        }[];
    } | null

Generated using TypeDoc