6 lines
106 B
GraphQL
6 lines
106 B
GraphQL
|
query GhRepoId($owner: String!, $name: String!) {
|
||
|
repository(owner: $owner, name: $name) {
|
||
|
id
|
||
|
}
|
||
|
}
|