Skip to main content

RssItems

No description

RssItems(
feedUrl: String!
): [RssItem!]!

Arguments

RssItems.feedUrl ● String! non-null scalar

Type

RssItem object

Examples

Run in Postman

Query:

RssItems($feedUrl: String!) {
RssItems(feedUrl: $feedUrl) {
id
categories
title
link
author
description
imageUrl
imageAltTitle
date
}
}

Variables:

{
"feedUrl": "xyz789"
}

Response:

{
"data": {
"RssItems": [
{
"id": "0e99a117-e3b6-40a6-867c-6b3bbc166b41",
"categories": [
"xyz789"
],
"title": "abc123",
"link": "abc123",
"author": "abc123",
"description": "xyz789",
"imageUrl": "abc123",
"imageAltTitle": "xyz789",
"date": "2025-03-26T13:39:48.013Z"
}
]
}
}