@book000/twitterts
    Preparing search index...

    Interface GraphQLGetUserTweetsSuccessResponse

    GraphQL GET UserTweets 成功レスポンスモデル

    interface GraphQLGetUserTweetsSuccessResponse {
        data: {
            user: {
                result: {
                    __typename: string;
                    timeline?: {
                        timeline?: {
                            instructions: {
                                direction?: string;
                                entries?: (...)[];
                                entry?: { content: ...; entryId: ...; sortIndex: ... };
                                type: string;
                            }[];
                            metadata: { scribeConfig: { page: string } };
                        };
                    };
                    timeline_v2?: {
                        timeline?: {
                            instructions: {
                                entries?: (...)[];
                                entry?: { content: ...; entryId: ...; sortIndex: ... };
                                type: string;
                            }[];
                            metadata: { scribeConfig: { page: string } };
                        };
                    };
                };
            };
        };
        errors?: {
            code: number;
            extensions: {
                code: number;
                kind: string;
                name: string;
                retry_after?: number;
                source: string;
                tracing: { trace_id: string };
            };
            kind: string;
            locations: { column: number; line: number }[];
            message: string;
            name: string;
            path: (string | number)[];
            retry_after?: number;
            source: string;
            tracing: { trace_id: string };
        }[];
    }
    Index

    Properties

    Properties

    data: {
        user: {
            result: {
                __typename: string;
                timeline?: {
                    timeline?: {
                        instructions: {
                            direction?: string;
                            entries?: (...)[];
                            entry?: { content: ...; entryId: ...; sortIndex: ... };
                            type: string;
                        }[];
                        metadata: { scribeConfig: { page: string } };
                    };
                };
                timeline_v2?: {
                    timeline?: {
                        instructions: {
                            entries?: (...)[];
                            entry?: { content: ...; entryId: ...; sortIndex: ... };
                            type: string;
                        }[];
                        metadata: { scribeConfig: { page: string } };
                    };
                };
            };
        };
    }
    errors?: {
        code: number;
        extensions: {
            code: number;
            kind: string;
            name: string;
            retry_after?: number;
            source: string;
            tracing: { trace_id: string };
        };
        kind: string;
        locations: { column: number; line: number }[];
        message: string;
        name: string;
        path: (string | number)[];
        retry_after?: number;
        source: string;
        tracing: { trace_id: string };
    }[]