Last active
November 2, 2020 07:25
-
-
Save lotharschulz/bd08ae40c23b972eaa1a52a0d2facc68 to your computer and use it in GitHub Desktop.
https://www.lotharschulz.info/2020/11/02/repository-archiving-unarchiving-with-github-graphql-api/ GitHub graphql explorer sample code - unarchive repository graphql mutation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mutation UnArchiveRepository { | |
unarchiveRepository(input:{clientMutationId:"true",repositoryId:"[insert ID]"}) { | |
repository { | |
isArchived, | |
description | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment