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": "abc123"
}

Response:

{
"data": {
"RssItems": [
{
"id": "58ccb96c-8e90-4464-86e0-f284442981df",
"categories": [
"abc123"
],
"title": "xyz789",
"link": "abc123",
"author": "abc123",
"description": "xyz789",
"imageUrl": "xyz789",
"imageAltTitle": "xyz789",
"date": "2024-06-20T16:58:58.782Z"
}
]
}
}