Feed

Feed is used to represent a specific feed within a stream. As mentioned before, there are multiple feeds per stream and these feeds are used to provide data to different nodes within the service.

The Feed model conveys if the corresponding feed is active and what stream that it belongs to.

FieldDescription
accountIdThe account ID of the user that owns the feed and stream
startedThe date when the feed started
activeA boolean indicating if the feed is active
endedThe date when the feed ended
nameThe name of the stream that this feed belongs to
streamIdThe stream ID of the stream that this feed belongs to

Example

An example of how a query with this model can be made, finding the number of active feeds.

{
    feedCount (filter: {
        active: true    
    })
}