Raw.stories.GetAllStories
Fetch the list of active (or active and hidden) stories, see here for more info on watching stories.
stories.getAllStories#eeb0d625 flags:# next:flags.1?true hidden:flags.2?true state:flags.0?string = stories.AllStories;
export namespace Raw {
export namespace stories {
export class GetAllStories {
constructor(params: { next?: boolean; hidden?: boolean; state?: string }) {}
}
}
}
This is a function constructor, you can use it as method when call invoke
Layer: 185
Constructor ID: 0xeeb0d625
Property
next
: boolean or undefinedIf next and state are both set, uses the passed state to paginate to the next results; if neither state nor next are set, fetches the initial page; if state is set and next is not set, check for changes in the active/hidden peerset, see here for more info on the full flow.
hidden
: boolean or undefinedIf set, fetches the hidden active story list, otherwise fetches the active story list, see here for more info on the full flow.
state
: string or undefinedIf next and state are both set, uses the passed state to paginate to the next results; if neither state nor next are set, fetches the initial page; if state is set and next is not set, check for changes in the active/hidden peerset, see here for more info on the full flow.