mirror of
https://github.com/taigrr/wtf
synced 2025-01-18 04:03:14 -08:00
This key allows users to pass an arbitrary amount of queries that contain custom filters. A simple query that shows all closed PRs could be written like the following. ``` customQueries: closedPullRequests: title: "Closed Requests" perPage: 10 filter: - "is:closed" - "is:pr" ``` Resolves #469