matters-server icon indicating copy to clipboard operation
matters-server copied to clipboard

[Server] Read-only CORS, and query filters

Open tx0c opened this issue 2 years ago • 0 comments

the GraphQL API should support CORS for read-only query from any site, to enable a 3rd party discovery portal site to be possible:

and filters:

{
  viewer {
    recommendation {
      hottest(input:{filter:{language:"ru"}}) {
        totalCount
        pageInfo { hasNextPage }
        edges {
          ... on ArticleEdge {
            node {
              id title slug summary dataHash mediaHash
            }
          }
        }
      }
    }
  }
}

tx0c avatar Mar 25 '22 06:03 tx0c