Repository Movements
repositoryMovements Query
Arguments
Name
Type
Description
Return Type
Notes
Usage Example
query {
# Get pending repository movements
repositoryMovements(
where: { executed: false }
orderBy: { field: CREATED_AT, direction: ASC }
first: 10
) {
edges {
node {
id
repository {
id
name
type
}
from {
name
}
to {
name
}
executed
blockedBy
}
}
totalCount
}
}Common Filters
Notes
Last updated
Was this helpful?
