We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/apollographql/apollo-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
matching_pull_request.graphql•701 B
# This operation is used to generate Rust code which lives in a file directly
# next to this with the same name but a `.rs` extension. For instructions on
# how to generate the code, see the top of `./mod.rs`.
fragment PrInfo on PullRequest {
url
number
author {
__typename
login
}
title
closingIssuesReferences(last: 4) {
nodes {
url
number
repository {
nameWithOwner
}
}
}
body
}
fragment PrSearchResult on SearchResultItemConnection {
issueCount
nodes {
__typename
...PrInfo
}
}
query MatchingPullRequest($search: String!) {
search(
type: ISSUE
query: $search
first: 1
) {
...PrSearchResult
}
}