UpdateMediaListEntriesVariables is an interface representing the variables for the UpdateMediaListEntriesMutation. It includes optional status, score, raw score, progress, progress volumes, repeat, priority, private status, notes, hidden from status lists status, advanced scores, started at date, completed at date, and a required array of ids.

interface UpdateMediaListEntriesVariables {
    advancedScores?: number[];
    completedAt?: FuzzyDate;
    hiddenFromStatusLists?: boolean;
    ids: number[];
    notes?: string;
    priority?: number;
    private?: boolean;
    progress?: number;
    progressVolumes?: number;
    repeat?: number;
    score?: number;
    scoreRaw?: number;
    startedAt?: FuzzyDate;
    status?: MediaListStatus;
}

Properties

advancedScores?: number[]

advancedScores is an array of numbers representing the advanced scores of the media list entries.

completedAt?: FuzzyDate

completedAt is a FuzzyDateInput representing when the media list entries were completed.

hiddenFromStatusLists?: boolean

hiddenFromStatusLists is a boolean representing whether the media list entries are hidden from status lists.

ids: number[]

ids is an array of numbers representing the ids of the media list entries.

notes?: string

notes is a string representing the notes of the media list entries.

priority?: number

priority is a number representing the priority of the media list entries.

private?: boolean

private is a boolean representing the privacy status of the media list entries.

progress?: number

progress is a number representing the progress of the media list entries.

progressVolumes?: number

progressVolumes is a number representing the progress volumes of the media list entries.

repeat?: number

repeat is a number representing the repeat status of the media list entries.

score?: number

score is a number representing the score of the media list entries.

scoreRaw?: number

scoreRaw is a number representing the raw score of the media list entries.

startedAt?: FuzzyDate

startedAt is a FuzzyDateInput representing when the media list entries started.

status is a MediaListStatus representing the status of the media list entries.