INPUT_OBJECT

ArticleFilter

link GraphQL Schema definition

  • input ArticleFilter {
  • # List only articles visible after the date
  • from: String
  • # List only articles visible before the date
  • to: String
  • # Only articles related to this event
  • relatedEventId: Int
  • # Only articles by this member
  • authorId: Int
  • # Article visibility
  • visible: Boolean
  • }