/** * Social context for a person */ export declare const UserContextType: import("../utils/schema").SchemaObjectType<{ /** * The token representing the social context */ id: { default: true; type: "String"; }; /** * Social context edge providing a list of the liked Pages that the calling * person and the target person have in common */ mutualLikes: { modifiers: { limit: { nullable: true; type: "Int"; }; summary: { nullable: true; list: true; type: import("../utils/schema").SchemaEnumType; }; }; type: () => import("../utils/schema").SchemaObjectType<{ data: { type: () => import("../utils/schema").SchemaObjectType<{ id: { type: "String"; core: true; }; about: { nullable: true; type: "String"; }; accessToken: { nullable: true; type: "String"; }; addCampaign: { type: () => import("../utils/schema").SchemaObjectType<{ id: { type: "String"; core: true; }; accountId: { type: "String"; }; }>; }; affiliation: { type: "String"; }; appId: { type: "String"; }; category: { default: true; type: "String"; }; categoryList: { default: true; list: true; type: () => import("../utils/schema").SchemaObjectType<{ id: { core: true; type: "String"; }; apiEnum: { default: true; type: "String"; }; fbPageCategories: { type: () => import("../utils/schema").SchemaObjectType; }; name: { default: true; type: "String"; }; }>; }; name: { type: "String"; }; }>; core: true; list: true; }; paging: { core: true; type: import("../utils/schema").SchemaObjectType<{ cursors: { core: true; /** * The token representing the social context */ type: import("../utils/schema").SchemaObjectType<{ before: { core: true; nullable: true; type: "String"; }; after: { core: true; nullable: true; type: "String"; }; }>; }; previous: { core: true; nullable: true; type: "String"; }; after: { core: true; nullable: true; type: "String"; }; }>; }; summary: { type: import("../utils/schema").SchemaObjectType<{ /** * Social context for a person */ totalCount: { nullable: true; type: "Int"; }; }>; }; }> & { connection: true; }; default: true; }; }>;