1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921
|
// Code generated by gen.go; DO NOT EDIT.
package githubv4
// Input represents one of the Input structs:
//
// AbortQueuedMigrationsInput, AcceptEnterpriseAdministratorInvitationInput, AcceptTopicSuggestionInput, AddAssigneesToAssignableInput, AddCommentInput, AddDiscussionCommentInput, AddEnterpriseSupportEntitlementInput, AddLabelsToLabelableInput, AddProjectCardInput, AddProjectColumnInput, AddProjectDraftIssueInput, AddProjectNextItemInput, AddPullRequestReviewCommentInput, AddPullRequestReviewInput, AddPullRequestReviewThreadInput, AddReactionInput, AddStarInput, AddUpvoteInput, AddVerifiableDomainInput, ApproveDeploymentsInput, ApproveVerifiableDomainInput, ArchiveRepositoryInput, AuditLogOrder, CancelEnterpriseAdminInvitationInput, CancelSponsorshipInput, ChangeUserStatusInput, CheckAnnotationData, CheckAnnotationRange, CheckRunAction, CheckRunFilter, CheckRunOutput, CheckRunOutputImage, CheckSuiteAutoTriggerPreference, CheckSuiteFilter, ClearLabelsFromLabelableInput, CloneProjectInput, CloneTemplateRepositoryInput, CloseIssueInput, ClosePullRequestInput, CommitAuthor, CommitContributionOrder, CommitMessage, CommittableBranch, ContributionOrder, ConvertProjectCardNoteToIssueInput, ConvertPullRequestToDraftInput, CreateBranchProtectionRuleInput, CreateCheckRunInput, CreateCheckSuiteInput, CreateCommitOnBranchInput, CreateDiscussionInput, CreateEnterpriseOrganizationInput, CreateEnvironmentInput, CreateIpAllowListEntryInput, CreateIssueInput, CreateMigrationSourceInput, CreateProjectInput, CreatePullRequestInput, CreateRefInput, CreateRepositoryInput, CreateSponsorsTierInput, CreateSponsorshipInput, CreateTeamDiscussionCommentInput, CreateTeamDiscussionInput, DeclineTopicSuggestionInput, DeleteBranchProtectionRuleInput, DeleteDeploymentInput, DeleteDiscussionCommentInput, DeleteDiscussionInput, DeleteEnvironmentInput, DeleteIpAllowListEntryInput, DeleteIssueCommentInput, DeleteIssueInput, DeleteProjectCardInput, DeleteProjectColumnInput, DeleteProjectInput, DeleteProjectNextItemInput, DeletePullRequestReviewCommentInput, DeletePullRequestReviewInput, DeleteRefInput, DeleteTeamDiscussionCommentInput, DeleteTeamDiscussionInput, DeleteVerifiableDomainInput, DeploymentOrder, DisablePullRequestAutoMergeInput, DiscussionOrder, DismissPullRequestReviewInput, DismissRepositoryVulnerabilityAlertInput, DraftPullRequestReviewComment, DraftPullRequestReviewThread, EnablePullRequestAutoMergeInput, EnterpriseAdministratorInvitationOrder, EnterpriseMemberOrder, EnterpriseServerInstallationOrder, EnterpriseServerUserAccountEmailOrder, EnterpriseServerUserAccountOrder, EnterpriseServerUserAccountsUploadOrder, FileAddition, FileChanges, FileDeletion, FollowOrganizationInput, FollowUserInput, GistOrder, GrantEnterpriseOrganizationsMigratorRoleInput, GrantMigratorRoleInput, InviteEnterpriseAdminInput, IpAllowListEntryOrder, IssueCommentOrder, IssueFilters, IssueOrder, LabelOrder, LanguageOrder, LinkRepositoryToProjectInput, LockLockableInput, MarkDiscussionCommentAsAnswerInput, MarkFileAsViewedInput, MarkPullRequestReadyForReviewInput, MergeBranchInput, MergePullRequestInput, MilestoneOrder, MinimizeCommentInput, MoveProjectCardInput, MoveProjectColumnInput, OrgEnterpriseOwnerOrder, OrganizationOrder, PackageFileOrder, PackageOrder, PackageVersionOrder, PinIssueInput, ProjectOrder, PullRequestOrder, ReactionOrder, RefOrder, RegenerateEnterpriseIdentityProviderRecoveryCodesInput, RegenerateVerifiableDomainTokenInput, RejectDeploymentsInput, ReleaseOrder, RemoveAssigneesFromAssignableInput, RemoveEnterpriseAdminInput, RemoveEnterpriseIdentityProviderInput, RemoveEnterpriseOrganizationInput, RemoveEnterpriseSupportEntitlementInput, RemoveLabelsFromLabelableInput, RemoveOutsideCollaboratorInput, RemoveReactionInput, RemoveStarInput, RemoveUpvoteInput, ReopenIssueInput, ReopenPullRequestInput, RepositoryInvitationOrder, RepositoryMigrationOrder, RepositoryOrder, RequestReviewsInput, RequiredStatusCheckInput, RerequestCheckSuiteInput, ResolveReviewThreadInput, RevokeEnterpriseOrganizationsMigratorRoleInput, RevokeMigratorRoleInput, SavedReplyOrder, SecurityAdvisoryIdentifierFilter, SecurityAdvisoryOrder, SecurityVulnerabilityOrder, SetEnterpriseIdentityProviderInput, SetOrganizationInteractionLimitInput, SetRepositoryInteractionLimitInput, SetUserInteractionLimitInput, SponsorOrder, SponsorableOrder, SponsorsActivityOrder, SponsorsTierOrder, SponsorshipNewsletterOrder, SponsorshipOrder, StarOrder, StartRepositoryMigrationInput, SubmitPullRequestReviewInput, TeamDiscussionCommentOrder, TeamDiscussionOrder, TeamMemberOrder, TeamOrder, TeamRepositoryOrder, TransferIssueInput, UnarchiveRepositoryInput, UnfollowOrganizationInput, UnfollowUserInput, UnlinkRepositoryFromProjectInput, UnlockLockableInput, UnmarkDiscussionCommentAsAnswerInput, UnmarkFileAsViewedInput, UnmarkIssueAsDuplicateInput, UnminimizeCommentInput, UnpinIssueInput, UnresolveReviewThreadInput, UpdateBranchProtectionRuleInput, UpdateCheckRunInput, UpdateCheckSuitePreferencesInput, UpdateDiscussionCommentInput, UpdateDiscussionInput, UpdateEnterpriseAdministratorRoleInput, UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput, UpdateEnterpriseDefaultRepositoryPermissionSettingInput, UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput, UpdateEnterpriseMembersCanCreateRepositoriesSettingInput, UpdateEnterpriseMembersCanDeleteIssuesSettingInput, UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput, UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput, UpdateEnterpriseMembersCanMakePurchasesSettingInput, UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput, UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput, UpdateEnterpriseOrganizationProjectsSettingInput, UpdateEnterpriseOwnerOrganizationRoleInput, UpdateEnterpriseProfileInput, UpdateEnterpriseRepositoryProjectsSettingInput, UpdateEnterpriseTeamDiscussionsSettingInput, UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput, UpdateEnvironmentInput, UpdateIpAllowListEnabledSettingInput, UpdateIpAllowListEntryInput, UpdateIpAllowListForInstalledAppsEnabledSettingInput, UpdateIssueCommentInput, UpdateIssueInput, UpdateNotificationRestrictionSettingInput, UpdateOrganizationAllowPrivateRepositoryForkingSettingInput, UpdateProjectCardInput, UpdateProjectColumnInput, UpdateProjectDraftIssueInput, UpdateProjectInput, UpdateProjectNextInput, UpdateProjectNextItemFieldInput, UpdatePullRequestBranchInput, UpdatePullRequestInput, UpdatePullRequestReviewCommentInput, UpdatePullRequestReviewInput, UpdateRefInput, UpdateRepositoryInput, UpdateSponsorshipPreferencesInput, UpdateSubscriptionInput, UpdateTeamDiscussionCommentInput, UpdateTeamDiscussionInput, UpdateTeamsRepositoryInput, UpdateTopicsInput, UserStatusOrder, VerifiableDomainOrder, VerifyVerifiableDomainInput.
type Input interface{}
// AbortQueuedMigrationsInput is an autogenerated input type of AbortQueuedMigrations.
type AbortQueuedMigrationsInput struct {
// The ID of the organization that is running the migrations. (Required.)
OwnerID ID `json:"ownerId"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// AcceptEnterpriseAdministratorInvitationInput is an autogenerated input type of AcceptEnterpriseAdministratorInvitation.
type AcceptEnterpriseAdministratorInvitationInput struct {
// The id of the invitation being accepted. (Required.)
InvitationID ID `json:"invitationId"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// AcceptTopicSuggestionInput is an autogenerated input type of AcceptTopicSuggestion.
type AcceptTopicSuggestionInput struct {
// The Node ID of the repository. (Required.)
RepositoryID ID `json:"repositoryId"`
// The name of the suggested topic. (Required.)
Name String `json:"name"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// AddAssigneesToAssignableInput is an autogenerated input type of AddAssigneesToAssignable.
type AddAssigneesToAssignableInput struct {
// The id of the assignable object to add assignees to. (Required.)
AssignableID ID `json:"assignableId"`
// The id of users to add as assignees. (Required.)
AssigneeIDs []ID `json:"assigneeIds"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// AddCommentInput is an autogenerated input type of AddComment.
type AddCommentInput struct {
// The Node ID of the subject to modify. (Required.)
SubjectID ID `json:"subjectId"`
// The contents of the comment. (Required.)
Body String `json:"body"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// AddDiscussionCommentInput is an autogenerated input type of AddDiscussionComment.
type AddDiscussionCommentInput struct {
// The Node ID of the discussion to comment on. (Required.)
DiscussionID ID `json:"discussionId"`
// The contents of the comment. (Required.)
Body String `json:"body"`
// The Node ID of the discussion comment within this discussion to reply to. (Optional.)
ReplyToID *ID `json:"replyToId,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// AddEnterpriseSupportEntitlementInput is an autogenerated input type of AddEnterpriseSupportEntitlement.
type AddEnterpriseSupportEntitlementInput struct {
// The ID of the Enterprise which the admin belongs to. (Required.)
EnterpriseID ID `json:"enterpriseId"`
// The login of a member who will receive the support entitlement. (Required.)
Login String `json:"login"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// AddLabelsToLabelableInput is an autogenerated input type of AddLabelsToLabelable.
type AddLabelsToLabelableInput struct {
// The id of the labelable object to add labels to. (Required.)
LabelableID ID `json:"labelableId"`
// The ids of the labels to add. (Required.)
LabelIDs []ID `json:"labelIds"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// AddProjectCardInput is an autogenerated input type of AddProjectCard.
type AddProjectCardInput struct {
// The Node ID of the ProjectColumn. (Required.)
ProjectColumnID ID `json:"projectColumnId"`
// The content of the card. Must be a member of the ProjectCardItem union. (Optional.)
ContentID *ID `json:"contentId,omitempty"`
// The note on the card. (Optional.)
Note *String `json:"note,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// AddProjectColumnInput is an autogenerated input type of AddProjectColumn.
type AddProjectColumnInput struct {
// The Node ID of the project. (Required.)
ProjectID ID `json:"projectId"`
// The name of the column. (Required.)
Name String `json:"name"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// AddProjectDraftIssueInput is an autogenerated input type of AddProjectDraftIssue.
type AddProjectDraftIssueInput struct {
// The ID of the Project to add the draft issue to. (Required.)
ProjectID ID `json:"projectId"`
// The title of the draft issue. (Required.)
Title String `json:"title"`
// The body of the draft issue. (Optional.)
Body *String `json:"body,omitempty"`
// The IDs of the assignees of the draft issue. (Optional.)
AssigneeIDs *[]ID `json:"assigneeIds,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// AddProjectNextItemInput is an autogenerated input type of AddProjectNextItem.
type AddProjectNextItemInput struct {
// The ID of the Project to add the item to. (Required.)
ProjectID ID `json:"projectId"`
// The content id of the item (Issue or PullRequest). (Required.)
ContentID ID `json:"contentId"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// AddPullRequestReviewCommentInput is an autogenerated input type of AddPullRequestReviewComment.
type AddPullRequestReviewCommentInput struct {
// The text of the comment. (Required.)
Body String `json:"body"`
// The node ID of the pull request reviewing. (Optional.)
PullRequestID *ID `json:"pullRequestId,omitempty"`
// The Node ID of the review to modify. (Optional.)
PullRequestReviewID *ID `json:"pullRequestReviewId,omitempty"`
// The SHA of the commit to comment on. (Optional.)
CommitOID *GitObjectID `json:"commitOID,omitempty"`
// The relative path of the file to comment on. (Optional.)
Path *String `json:"path,omitempty"`
// The line index in the diff to comment on. (Optional.)
Position *Int `json:"position,omitempty"`
// The comment id to reply to. (Optional.)
InReplyTo *ID `json:"inReplyTo,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// AddPullRequestReviewInput is an autogenerated input type of AddPullRequestReview.
type AddPullRequestReviewInput struct {
// The Node ID of the pull request to modify. (Required.)
PullRequestID ID `json:"pullRequestId"`
// The commit OID the review pertains to. (Optional.)
CommitOID *GitObjectID `json:"commitOID,omitempty"`
// The contents of the review body comment. (Optional.)
Body *String `json:"body,omitempty"`
// The event to perform on the pull request review. (Optional.)
Event *PullRequestReviewEvent `json:"event,omitempty"`
// The review line comments. (Optional.)
Comments *[]*DraftPullRequestReviewComment `json:"comments,omitempty"`
// The review line comment threads. (Optional.)
Threads *[]*DraftPullRequestReviewThread `json:"threads,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// AddPullRequestReviewThreadInput is an autogenerated input type of AddPullRequestReviewThread.
type AddPullRequestReviewThreadInput struct {
// Path to the file being commented on. (Required.)
Path String `json:"path"`
// Body of the thread's first comment. (Required.)
Body String `json:"body"`
// The line of the blob to which the thread refers. The end of the line range for multi-line comments. (Required.)
Line Int `json:"line"`
// The node ID of the pull request reviewing. (Optional.)
PullRequestID *ID `json:"pullRequestId,omitempty"`
// The Node ID of the review to modify. (Optional.)
PullRequestReviewID *ID `json:"pullRequestReviewId,omitempty"`
// The side of the diff on which the line resides. For multi-line comments, this is the side for the end of the line range. (Optional.)
Side *DiffSide `json:"side,omitempty"`
// The first line of the range to which the comment refers. (Optional.)
StartLine *Int `json:"startLine,omitempty"`
// The side of the diff on which the start line resides. (Optional.)
StartSide *DiffSide `json:"startSide,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// AddReactionInput is an autogenerated input type of AddReaction.
type AddReactionInput struct {
// The Node ID of the subject to modify. (Required.)
SubjectID ID `json:"subjectId"`
// The name of the emoji to react with. (Required.)
Content ReactionContent `json:"content"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// AddStarInput is an autogenerated input type of AddStar.
type AddStarInput struct {
// The Starrable ID to star. (Required.)
StarrableID ID `json:"starrableId"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// AddUpvoteInput is an autogenerated input type of AddUpvote.
type AddUpvoteInput struct {
// The Node ID of the discussion or comment to upvote. (Required.)
SubjectID ID `json:"subjectId"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// AddVerifiableDomainInput is an autogenerated input type of AddVerifiableDomain.
type AddVerifiableDomainInput struct {
// The ID of the owner to add the domain to. (Required.)
OwnerID ID `json:"ownerId"`
// The URL of the domain. (Required.)
Domain URI `json:"domain"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// ApproveDeploymentsInput is an autogenerated input type of ApproveDeployments.
type ApproveDeploymentsInput struct {
// The node ID of the workflow run containing the pending deployments. (Required.)
WorkflowRunID ID `json:"workflowRunId"`
// The ids of environments to reject deployments. (Required.)
EnvironmentIDs []ID `json:"environmentIds"`
// Optional comment for approving deployments. (Optional.)
Comment *String `json:"comment,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// ApproveVerifiableDomainInput is an autogenerated input type of ApproveVerifiableDomain.
type ApproveVerifiableDomainInput struct {
// The ID of the verifiable domain to approve. (Required.)
ID ID `json:"id"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// ArchiveRepositoryInput is an autogenerated input type of ArchiveRepository.
type ArchiveRepositoryInput struct {
// The ID of the repository to mark as archived. (Required.)
RepositoryID ID `json:"repositoryId"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// AuditLogOrder represents ordering options for Audit Log connections.
type AuditLogOrder struct {
// The field to order Audit Logs by. (Optional.)
Field *AuditLogOrderField `json:"field,omitempty"`
// The ordering direction. (Optional.)
Direction *OrderDirection `json:"direction,omitempty"`
}
// CancelEnterpriseAdminInvitationInput is an autogenerated input type of CancelEnterpriseAdminInvitation.
type CancelEnterpriseAdminInvitationInput struct {
// The Node ID of the pending enterprise administrator invitation. (Required.)
InvitationID ID `json:"invitationId"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// CancelSponsorshipInput is an autogenerated input type of CancelSponsorship.
type CancelSponsorshipInput struct {
// The ID of the user or organization who is acting as the sponsor, paying for the sponsorship. Required if sponsorLogin is not given. (Optional.)
SponsorID *ID `json:"sponsorId,omitempty"`
// The username of the user or organization who is acting as the sponsor, paying for the sponsorship. Required if sponsorId is not given. (Optional.)
SponsorLogin *String `json:"sponsorLogin,omitempty"`
// The ID of the user or organization who is receiving the sponsorship. Required if sponsorableLogin is not given. (Optional.)
SponsorableID *ID `json:"sponsorableId,omitempty"`
// The username of the user or organization who is receiving the sponsorship. Required if sponsorableId is not given. (Optional.)
SponsorableLogin *String `json:"sponsorableLogin,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// ChangeUserStatusInput is an autogenerated input type of ChangeUserStatus.
type ChangeUserStatusInput struct {
// The emoji to represent your status. Can either be a native Unicode emoji or an emoji name with colons, e.g., :grinning:. (Optional.)
Emoji *String `json:"emoji,omitempty"`
// A short description of your current status. (Optional.)
Message *String `json:"message,omitempty"`
// The ID of the organization whose members will be allowed to see the status. If omitted, the status will be publicly visible. (Optional.)
OrganizationID *ID `json:"organizationId,omitempty"`
// Whether this status should indicate you are not fully available on GitHub, e.g., you are away. (Optional.)
LimitedAvailability *Boolean `json:"limitedAvailability,omitempty"`
// If set, the user status will not be shown after this date. (Optional.)
ExpiresAt *DateTime `json:"expiresAt,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// CheckAnnotationData represents information from a check run analysis to specific lines of code.
type CheckAnnotationData struct {
// The path of the file to add an annotation to. (Required.)
Path String `json:"path"`
// The location of the annotation. (Required.)
Location CheckAnnotationRange `json:"location"`
// Represents an annotation's information level. (Required.)
AnnotationLevel CheckAnnotationLevel `json:"annotationLevel"`
// A short description of the feedback for these lines of code. (Required.)
Message String `json:"message"`
// The title that represents the annotation. (Optional.)
Title *String `json:"title,omitempty"`
// Details about this annotation. (Optional.)
RawDetails *String `json:"rawDetails,omitempty"`
}
// CheckAnnotationRange represents information from a check run analysis to specific lines of code.
type CheckAnnotationRange struct {
// The starting line of the range. (Required.)
StartLine Int `json:"startLine"`
// The ending line of the range. (Required.)
EndLine Int `json:"endLine"`
// The starting column of the range. (Optional.)
StartColumn *Int `json:"startColumn,omitempty"`
// The ending column of the range. (Optional.)
EndColumn *Int `json:"endColumn,omitempty"`
}
// CheckRunAction represents possible further actions the integrator can perform.
type CheckRunAction struct {
// The text to be displayed on a button in the web UI. (Required.)
Label String `json:"label"`
// A short explanation of what this action would do. (Required.)
Description String `json:"description"`
// A reference for the action on the integrator's system. (Required.)
Identifier String `json:"identifier"`
}
// CheckRunFilter represents the filters that are available when fetching check runs.
type CheckRunFilter struct {
// Filters the check runs by this type. (Optional.)
CheckType *CheckRunType `json:"checkType,omitempty"`
// Filters the check runs created by this application ID. (Optional.)
AppID *Int `json:"appId,omitempty"`
// Filters the check runs by this name. (Optional.)
CheckName *String `json:"checkName,omitempty"`
// Filters the check runs by this status. (Optional.)
Status *CheckStatusState `json:"status,omitempty"`
}
// CheckRunOutput represents descriptive details about the check run.
type CheckRunOutput struct {
// A title to provide for this check run. (Required.)
Title String `json:"title"`
// The summary of the check run (supports Commonmark). (Required.)
Summary String `json:"summary"`
// The details of the check run (supports Commonmark). (Optional.)
Text *String `json:"text,omitempty"`
// The annotations that are made as part of the check run. (Optional.)
Annotations *[]CheckAnnotationData `json:"annotations,omitempty"`
// Images attached to the check run output displayed in the GitHub pull request UI. (Optional.)
Images *[]CheckRunOutputImage `json:"images,omitempty"`
}
// CheckRunOutputImage represents images attached to the check run output displayed in the GitHub pull request UI.
type CheckRunOutputImage struct {
// The alternative text for the image. (Required.)
Alt String `json:"alt"`
// The full URL of the image. (Required.)
ImageURL URI `json:"imageUrl"`
// A short image description. (Optional.)
Caption *String `json:"caption,omitempty"`
}
// CheckSuiteAutoTriggerPreference represents the auto-trigger preferences that are available for check suites.
type CheckSuiteAutoTriggerPreference struct {
// The node ID of the application that owns the check suite. (Required.)
AppID ID `json:"appId"`
// Set to `true` to enable automatic creation of CheckSuite events upon pushes to the repository. (Required.)
Setting Boolean `json:"setting"`
}
// CheckSuiteFilter represents the filters that are available when fetching check suites.
type CheckSuiteFilter struct {
// Filters the check suites created by this application ID. (Optional.)
AppID *Int `json:"appId,omitempty"`
// Filters the check suites by this name. (Optional.)
CheckName *String `json:"checkName,omitempty"`
}
// ClearLabelsFromLabelableInput is an autogenerated input type of ClearLabelsFromLabelable.
type ClearLabelsFromLabelableInput struct {
// The id of the labelable object to clear the labels from. (Required.)
LabelableID ID `json:"labelableId"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// CloneProjectInput is an autogenerated input type of CloneProject.
type CloneProjectInput struct {
// The owner ID to create the project under. (Required.)
TargetOwnerID ID `json:"targetOwnerId"`
// The source project to clone. (Required.)
SourceID ID `json:"sourceId"`
// Whether or not to clone the source project's workflows. (Required.)
IncludeWorkflows Boolean `json:"includeWorkflows"`
// The name of the project. (Required.)
Name String `json:"name"`
// The description of the project. (Optional.)
Body *String `json:"body,omitempty"`
// The visibility of the project, defaults to false (private). (Optional.)
Public *Boolean `json:"public,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// CloneTemplateRepositoryInput is an autogenerated input type of CloneTemplateRepository.
type CloneTemplateRepositoryInput struct {
// The Node ID of the template repository. (Required.)
RepositoryID ID `json:"repositoryId"`
// The name of the new repository. (Required.)
Name String `json:"name"`
// The ID of the owner for the new repository. (Required.)
OwnerID ID `json:"ownerId"`
// Indicates the repository's visibility level. (Required.)
Visibility RepositoryVisibility `json:"visibility"`
// A short description of the new repository. (Optional.)
Description *String `json:"description,omitempty"`
// Whether to copy all branches from the template to the new repository. Defaults to copying only the default branch of the template. (Optional.)
IncludeAllBranches *Boolean `json:"includeAllBranches,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// CloseIssueInput is an autogenerated input type of CloseIssue.
type CloseIssueInput struct {
// ID of the issue to be closed. (Required.)
IssueID ID `json:"issueId"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// ClosePullRequestInput is an autogenerated input type of ClosePullRequest.
type ClosePullRequestInput struct {
// ID of the pull request to be closed. (Required.)
PullRequestID ID `json:"pullRequestId"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// CommitAuthor specifies an author for filtering Git commits.
type CommitAuthor struct {
// ID of a User to filter by. If non-null, only commits authored by this user will be returned. This field takes precedence over emails. (Optional.)
ID *ID `json:"id,omitempty"`
// Email addresses to filter by. Commits authored by any of the specified email addresses will be returned. (Optional.)
Emails *[]String `json:"emails,omitempty"`
}
// CommitContributionOrder represents ordering options for commit contribution connections.
type CommitContributionOrder struct {
// The field by which to order commit contributions. (Required.)
Field CommitContributionOrderField `json:"field"`
// The ordering direction. (Required.)
Direction OrderDirection `json:"direction"`
}
// CommitMessage represents a message to include with a new commit.
type CommitMessage struct {
// The headline of the message. (Required.)
Headline String `json:"headline"`
// The body of the message. (Optional.)
Body *String `json:"body,omitempty"`
}
// CommittableBranch represents a git ref for a commit to be appended to. The ref must be a branch, i.e. its fully qualified name must start with `refs/heads/` (although the input is not required to be fully qualified). The Ref may be specified by its global node ID or by the repository nameWithOwner and branch name. ### Examples Specify a branch using a global node ID: { "id": "MDM6UmVmMTpyZWZzL2hlYWRzL21haW4=" } Specify a branch using nameWithOwner and branch name: { "nameWithOwner": "github/graphql-client", "branchName": "main" }.
type CommittableBranch struct {
// The Node ID of the Ref to be updated. (Optional.)
ID *ID `json:"id,omitempty"`
// The nameWithOwner of the repository to commit to. (Optional.)
RepositoryNameWithOwner *String `json:"repositoryNameWithOwner,omitempty"`
// The unqualified name of the branch to append the commit to. (Optional.)
BranchName *String `json:"branchName,omitempty"`
}
// ContributionOrder represents ordering options for contribution connections.
type ContributionOrder struct {
// The ordering direction. (Required.)
Direction OrderDirection `json:"direction"`
}
// ConvertProjectCardNoteToIssueInput is an autogenerated input type of ConvertProjectCardNoteToIssue.
type ConvertProjectCardNoteToIssueInput struct {
// The ProjectCard ID to convert. (Required.)
ProjectCardID ID `json:"projectCardId"`
// The ID of the repository to create the issue in. (Required.)
RepositoryID ID `json:"repositoryId"`
// The title of the newly created issue. Defaults to the card's note text. (Optional.)
Title *String `json:"title,omitempty"`
// The body of the newly created issue. (Optional.)
Body *String `json:"body,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// ConvertPullRequestToDraftInput is an autogenerated input type of ConvertPullRequestToDraft.
type ConvertPullRequestToDraftInput struct {
// ID of the pull request to convert to draft. (Required.)
PullRequestID ID `json:"pullRequestId"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// CreateBranchProtectionRuleInput is an autogenerated input type of CreateBranchProtectionRule.
type CreateBranchProtectionRuleInput struct {
// The global relay id of the repository in which a new branch protection rule should be created in. (Required.)
RepositoryID ID `json:"repositoryId"`
// The glob-like pattern used to determine matching branches. (Required.)
Pattern String `json:"pattern"`
// Are approving reviews required to update matching branches. (Optional.)
RequiresApprovingReviews *Boolean `json:"requiresApprovingReviews,omitempty"`
// Number of approving reviews required to update matching branches. (Optional.)
RequiredApprovingReviewCount *Int `json:"requiredApprovingReviewCount,omitempty"`
// Are commits required to be signed. (Optional.)
RequiresCommitSignatures *Boolean `json:"requiresCommitSignatures,omitempty"`
// Are merge commits prohibited from being pushed to this branch. (Optional.)
RequiresLinearHistory *Boolean `json:"requiresLinearHistory,omitempty"`
// Is branch creation a protected operation. (Optional.)
BlocksCreations *Boolean `json:"blocksCreations,omitempty"`
// Are force pushes allowed on this branch. (Optional.)
AllowsForcePushes *Boolean `json:"allowsForcePushes,omitempty"`
// Can this branch be deleted. (Optional.)
AllowsDeletions *Boolean `json:"allowsDeletions,omitempty"`
// Can admins overwrite branch protection. (Optional.)
IsAdminEnforced *Boolean `json:"isAdminEnforced,omitempty"`
// Are status checks required to update matching branches. (Optional.)
RequiresStatusChecks *Boolean `json:"requiresStatusChecks,omitempty"`
// Are branches required to be up to date before merging. (Optional.)
RequiresStrictStatusChecks *Boolean `json:"requiresStrictStatusChecks,omitempty"`
// Are reviews from code owners required to update matching branches. (Optional.)
RequiresCodeOwnerReviews *Boolean `json:"requiresCodeOwnerReviews,omitempty"`
// Will new commits pushed to matching branches dismiss pull request review approvals. (Optional.)
DismissesStaleReviews *Boolean `json:"dismissesStaleReviews,omitempty"`
// Is dismissal of pull request reviews restricted. (Optional.)
RestrictsReviewDismissals *Boolean `json:"restrictsReviewDismissals,omitempty"`
// A list of User or Team IDs allowed to dismiss reviews on pull requests targeting matching branches. (Optional.)
ReviewDismissalActorIDs *[]ID `json:"reviewDismissalActorIds,omitempty"`
// A list of User or Team IDs allowed to bypass pull requests targeting matching branches. (Optional.)
BypassPullRequestActorIDs *[]ID `json:"bypassPullRequestActorIds,omitempty"`
// A list of User or Team IDs allowed to bypass force push targeting matching branches. (Optional.)
BypassForcePushActorIDs *[]ID `json:"bypassForcePushActorIds,omitempty"`
// Is pushing to matching branches restricted. (Optional.)
RestrictsPushes *Boolean `json:"restrictsPushes,omitempty"`
// A list of User, Team, or App IDs allowed to push to matching branches. (Optional.)
PushActorIDs *[]ID `json:"pushActorIds,omitempty"`
// List of required status check contexts that must pass for commits to be accepted to matching branches. (Optional.)
RequiredStatusCheckContexts *[]String `json:"requiredStatusCheckContexts,omitempty"`
// The list of required status checks. (Optional.)
RequiredStatusChecks *[]RequiredStatusCheckInput `json:"requiredStatusChecks,omitempty"`
// Are conversations required to be resolved before merging. (Optional.)
RequiresConversationResolution *Boolean `json:"requiresConversationResolution,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// CreateCheckRunInput is an autogenerated input type of CreateCheckRun.
type CreateCheckRunInput struct {
// The node ID of the repository. (Required.)
RepositoryID ID `json:"repositoryId"`
// The name of the check. (Required.)
Name String `json:"name"`
// The SHA of the head commit. (Required.)
HeadSha GitObjectID `json:"headSha"`
// The URL of the integrator's site that has the full details of the check. (Optional.)
DetailsURL *URI `json:"detailsUrl,omitempty"`
// A reference for the run on the integrator's system. (Optional.)
ExternalID *String `json:"externalId,omitempty"`
// The current status. (Optional.)
Status *RequestableCheckStatusState `json:"status,omitempty"`
// The time that the check run began. (Optional.)
StartedAt *DateTime `json:"startedAt,omitempty"`
// The final conclusion of the check. (Optional.)
Conclusion *CheckConclusionState `json:"conclusion,omitempty"`
// The time that the check run finished. (Optional.)
CompletedAt *DateTime `json:"completedAt,omitempty"`
// Descriptive details about the run. (Optional.)
Output *CheckRunOutput `json:"output,omitempty"`
// Possible further actions the integrator can perform, which a user may trigger. (Optional.)
Actions *[]CheckRunAction `json:"actions,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// CreateCheckSuiteInput is an autogenerated input type of CreateCheckSuite.
type CreateCheckSuiteInput struct {
// The Node ID of the repository. (Required.)
RepositoryID ID `json:"repositoryId"`
// The SHA of the head commit. (Required.)
HeadSha GitObjectID `json:"headSha"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// CreateCommitOnBranchInput is an autogenerated input type of CreateCommitOnBranch.
type CreateCommitOnBranchInput struct {
// The Ref to be updated. Must be a branch. (Required.)
Branch CommittableBranch `json:"branch"`
// The commit message the be included with the commit. (Required.)
Message CommitMessage `json:"message"`
// The git commit oid expected at the head of the branch prior to the commit. (Required.)
ExpectedHeadOid GitObjectID `json:"expectedHeadOid"`
// A description of changes to files in this commit. (Optional.)
FileChanges *FileChanges `json:"fileChanges,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// CreateDiscussionInput is an autogenerated input type of CreateDiscussion.
type CreateDiscussionInput struct {
// The id of the repository on which to create the discussion. (Required.)
RepositoryID ID `json:"repositoryId"`
// The title of the discussion. (Required.)
Title String `json:"title"`
// The body of the discussion. (Required.)
Body String `json:"body"`
// The id of the discussion category to associate with this discussion. (Required.)
CategoryID ID `json:"categoryId"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// CreateEnterpriseOrganizationInput is an autogenerated input type of CreateEnterpriseOrganization.
type CreateEnterpriseOrganizationInput struct {
// The ID of the enterprise owning the new organization. (Required.)
EnterpriseID ID `json:"enterpriseId"`
// The login of the new organization. (Required.)
Login String `json:"login"`
// The profile name of the new organization. (Required.)
ProfileName String `json:"profileName"`
// The email used for sending billing receipts. (Required.)
BillingEmail String `json:"billingEmail"`
// The logins for the administrators of the new organization. (Required.)
AdminLogins []String `json:"adminLogins"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// CreateEnvironmentInput is an autogenerated input type of CreateEnvironment.
type CreateEnvironmentInput struct {
// The node ID of the repository. (Required.)
RepositoryID ID `json:"repositoryId"`
// The name of the environment. (Required.)
Name String `json:"name"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// CreateIpAllowListEntryInput is an autogenerated input type of CreateIpAllowListEntry.
type CreateIpAllowListEntryInput struct {
// The ID of the owner for which to create the new IP allow list entry. (Required.)
OwnerID ID `json:"ownerId"`
// An IP address or range of addresses in CIDR notation. (Required.)
AllowListValue String `json:"allowListValue"`
// Whether the IP allow list entry is active when an IP allow list is enabled. (Required.)
IsActive Boolean `json:"isActive"`
// An optional name for the IP allow list entry. (Optional.)
Name *String `json:"name,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// CreateIssueInput is an autogenerated input type of CreateIssue.
type CreateIssueInput struct {
// The Node ID of the repository. (Required.)
RepositoryID ID `json:"repositoryId"`
// The title for the issue. (Required.)
Title String `json:"title"`
// The body for the issue description. (Optional.)
Body *String `json:"body,omitempty"`
// The Node ID for the user assignee for this issue. (Optional.)
AssigneeIDs *[]ID `json:"assigneeIds,omitempty"`
// The Node ID of the milestone for this issue. (Optional.)
MilestoneID *ID `json:"milestoneId,omitempty"`
// An array of Node IDs of labels for this issue. (Optional.)
LabelIDs *[]ID `json:"labelIds,omitempty"`
// An array of Node IDs for projects associated with this issue. (Optional.)
ProjectIDs *[]ID `json:"projectIds,omitempty"`
// The name of an issue template in the repository, assigns labels and assignees from the template to the issue. (Optional.)
IssueTemplate *String `json:"issueTemplate,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// CreateMigrationSourceInput is an autogenerated input type of CreateMigrationSource.
type CreateMigrationSourceInput struct {
// The Octoshift migration source name. (Required.)
Name String `json:"name"`
// The Octoshift migration source URL. (Required.)
URL String `json:"url"`
// The Octoshift migration source type. (Required.)
Type MigrationSourceType `json:"type"`
// The ID of the organization that will own the Octoshift migration source. (Required.)
OwnerID ID `json:"ownerId"`
// The Octoshift migration source access token. (Optional.)
AccessToken *String `json:"accessToken,omitempty"`
// The GitHub personal access token of the user importing to the target repository. (Optional.)
GitHubPat *String `json:"githubPat,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// CreateProjectInput is an autogenerated input type of CreateProject.
type CreateProjectInput struct {
// The owner ID to create the project under. (Required.)
OwnerID ID `json:"ownerId"`
// The name of project. (Required.)
Name String `json:"name"`
// The description of project. (Optional.)
Body *String `json:"body,omitempty"`
// The name of the GitHub-provided template. (Optional.)
Template *ProjectTemplate `json:"template,omitempty"`
// A list of repository IDs to create as linked repositories for the project. (Optional.)
RepositoryIDs *[]ID `json:"repositoryIds,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// CreatePullRequestInput is an autogenerated input type of CreatePullRequest.
type CreatePullRequestInput struct {
// The Node ID of the repository. (Required.)
RepositoryID ID `json:"repositoryId"`
// The name of the branch you want your changes pulled into. This should be an existing branch on the current repository. You cannot update the base branch on a pull request to point to another repository. (Required.)
BaseRefName String `json:"baseRefName"`
// The name of the branch where your changes are implemented. For cross-repository pull requests in the same network, namespace `head_ref_name` with a user like this: `username:branch`. (Required.)
HeadRefName String `json:"headRefName"`
// The title of the pull request. (Required.)
Title String `json:"title"`
// The contents of the pull request. (Optional.)
Body *String `json:"body,omitempty"`
// Indicates whether maintainers can modify the pull request. (Optional.)
MaintainerCanModify *Boolean `json:"maintainerCanModify,omitempty"`
// Indicates whether this pull request should be a draft. (Optional.)
Draft *Boolean `json:"draft,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// CreateRefInput is an autogenerated input type of CreateRef.
type CreateRefInput struct {
// The Node ID of the Repository to create the Ref in. (Required.)
RepositoryID ID `json:"repositoryId"`
// The fully qualified name of the new Ref (ie: `refs/heads/my_new_branch`). (Required.)
Name String `json:"name"`
// The GitObjectID that the new Ref shall target. Must point to a commit. (Required.)
Oid GitObjectID `json:"oid"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// CreateRepositoryInput is an autogenerated input type of CreateRepository.
type CreateRepositoryInput struct {
// The name of the new repository. (Required.)
Name String `json:"name"`
// Indicates the repository's visibility level. (Required.)
Visibility RepositoryVisibility `json:"visibility"`
// The ID of the owner for the new repository. (Optional.)
OwnerID *ID `json:"ownerId,omitempty"`
// A short description of the new repository. (Optional.)
Description *String `json:"description,omitempty"`
// Whether this repository should be marked as a template such that anyone who can access it can create new repositories with the same files and directory structure. (Optional.)
Template *Boolean `json:"template,omitempty"`
// The URL for a web page about this repository. (Optional.)
HomepageURL *URI `json:"homepageUrl,omitempty"`
// Indicates if the repository should have the wiki feature enabled. (Optional.)
HasWikiEnabled *Boolean `json:"hasWikiEnabled,omitempty"`
// Indicates if the repository should have the issues feature enabled. (Optional.)
HasIssuesEnabled *Boolean `json:"hasIssuesEnabled,omitempty"`
// When an organization is specified as the owner, this ID identifies the team that should be granted access to the new repository. (Optional.)
TeamID *ID `json:"teamId,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// CreateSponsorsTierInput is an autogenerated input type of CreateSponsorsTier.
type CreateSponsorsTierInput struct {
// The value of the new tier in US dollars. Valid values: 1-12000. (Required.)
Amount Int `json:"amount"`
// A description of what this tier is, what perks sponsors might receive, what a sponsorship at this tier means for you, etc. (Required.)
Description String `json:"description"`
// The ID of the user or organization who owns the GitHub Sponsors profile. Defaults to the current user if omitted and sponsorableLogin is not given. (Optional.)
SponsorableID *ID `json:"sponsorableId,omitempty"`
// The username of the user or organization who owns the GitHub Sponsors profile. Defaults to the current user if omitted and sponsorableId is not given. (Optional.)
SponsorableLogin *String `json:"sponsorableLogin,omitempty"`
// Whether sponsorships using this tier should happen monthly/yearly or just once. (Optional.)
IsRecurring *Boolean `json:"isRecurring,omitempty"`
// Optional ID of the private repository that sponsors at this tier should gain read-only access to. Must be owned by an organization. (Optional.)
RepositoryID *ID `json:"repositoryId,omitempty"`
// Optional login of the organization owner of the private repository that sponsors at this tier should gain read-only access to. Necessary if repositoryName is given. Will be ignored if repositoryId is given. (Optional.)
RepositoryOwnerLogin *String `json:"repositoryOwnerLogin,omitempty"`
// Optional name of the private repository that sponsors at this tier should gain read-only access to. Must be owned by an organization. Necessary if repositoryOwnerLogin is given. Will be ignored if repositoryId is given. (Optional.)
RepositoryName *String `json:"repositoryName,omitempty"`
// Optional message new sponsors at this tier will receive. (Optional.)
WelcomeMessage *String `json:"welcomeMessage,omitempty"`
// Whether to make the tier available immediately for sponsors to choose. Defaults to creating a draft tier that will not be publicly visible. (Optional.)
Publish *Boolean `json:"publish,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// CreateSponsorshipInput is an autogenerated input type of CreateSponsorship.
type CreateSponsorshipInput struct {
// The ID of the user or organization who is acting as the sponsor, paying for the sponsorship. Required if sponsorLogin is not given. (Optional.)
SponsorID *ID `json:"sponsorId,omitempty"`
// The username of the user or organization who is acting as the sponsor, paying for the sponsorship. Required if sponsorId is not given. (Optional.)
SponsorLogin *String `json:"sponsorLogin,omitempty"`
// The ID of the user or organization who is receiving the sponsorship. Required if sponsorableLogin is not given. (Optional.)
SponsorableID *ID `json:"sponsorableId,omitempty"`
// The username of the user or organization who is receiving the sponsorship. Required if sponsorableId is not given. (Optional.)
SponsorableLogin *String `json:"sponsorableLogin,omitempty"`
// The ID of one of sponsorable's existing tiers to sponsor at. Required if amount is not specified. (Optional.)
TierID *ID `json:"tierId,omitempty"`
// The amount to pay to the sponsorable in US dollars. Required if a tierId is not specified. Valid values: 1-12000. (Optional.)
Amount *Int `json:"amount,omitempty"`
// Whether the sponsorship should happen monthly/yearly or just this one time. Required if a tierId is not specified. (Optional.)
IsRecurring *Boolean `json:"isRecurring,omitempty"`
// Whether the sponsor should receive email updates from the sponsorable. (Optional.)
ReceiveEmails *Boolean `json:"receiveEmails,omitempty"`
// Specify whether others should be able to see that the sponsor is sponsoring the sponsorable. Public visibility still does not reveal which tier is used. (Optional.)
PrivacyLevel *SponsorshipPrivacy `json:"privacyLevel,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// CreateTeamDiscussionCommentInput is an autogenerated input type of CreateTeamDiscussionComment.
type CreateTeamDiscussionCommentInput struct {
// The ID of the discussion to which the comment belongs. (Required.)
DiscussionID ID `json:"discussionId"`
// The content of the comment. (Required.)
Body String `json:"body"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// CreateTeamDiscussionInput is an autogenerated input type of CreateTeamDiscussion.
type CreateTeamDiscussionInput struct {
// The ID of the team to which the discussion belongs. (Required.)
TeamID ID `json:"teamId"`
// The title of the discussion. (Required.)
Title String `json:"title"`
// The content of the discussion. (Required.)
Body String `json:"body"`
// If true, restricts the visibility of this discussion to team members and organization admins. If false or not specified, allows any organization member to view this discussion. (Optional.)
Private *Boolean `json:"private,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// DeclineTopicSuggestionInput is an autogenerated input type of DeclineTopicSuggestion.
type DeclineTopicSuggestionInput struct {
// The Node ID of the repository. (Required.)
RepositoryID ID `json:"repositoryId"`
// The name of the suggested topic. (Required.)
Name String `json:"name"`
// The reason why the suggested topic is declined. (Required.)
Reason TopicSuggestionDeclineReason `json:"reason"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// DeleteBranchProtectionRuleInput is an autogenerated input type of DeleteBranchProtectionRule.
type DeleteBranchProtectionRuleInput struct {
// The global relay id of the branch protection rule to be deleted. (Required.)
BranchProtectionRuleID ID `json:"branchProtectionRuleId"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// DeleteDeploymentInput is an autogenerated input type of DeleteDeployment.
type DeleteDeploymentInput struct {
// The Node ID of the deployment to be deleted. (Required.)
ID ID `json:"id"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// DeleteDiscussionCommentInput is an autogenerated input type of DeleteDiscussionComment.
type DeleteDiscussionCommentInput struct {
// The Node id of the discussion comment to delete. (Required.)
ID ID `json:"id"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// DeleteDiscussionInput is an autogenerated input type of DeleteDiscussion.
type DeleteDiscussionInput struct {
// The id of the discussion to delete. (Required.)
ID ID `json:"id"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// DeleteEnvironmentInput is an autogenerated input type of DeleteEnvironment.
type DeleteEnvironmentInput struct {
// The Node ID of the environment to be deleted. (Required.)
ID ID `json:"id"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// DeleteIpAllowListEntryInput is an autogenerated input type of DeleteIpAllowListEntry.
type DeleteIpAllowListEntryInput struct {
// The ID of the IP allow list entry to delete. (Required.)
IPAllowListEntryID ID `json:"ipAllowListEntryId"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// DeleteIssueCommentInput is an autogenerated input type of DeleteIssueComment.
type DeleteIssueCommentInput struct {
// The ID of the comment to delete. (Required.)
ID ID `json:"id"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// DeleteIssueInput is an autogenerated input type of DeleteIssue.
type DeleteIssueInput struct {
// The ID of the issue to delete. (Required.)
IssueID ID `json:"issueId"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// DeleteProjectCardInput is an autogenerated input type of DeleteProjectCard.
type DeleteProjectCardInput struct {
// The id of the card to delete. (Required.)
CardID ID `json:"cardId"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// DeleteProjectColumnInput is an autogenerated input type of DeleteProjectColumn.
type DeleteProjectColumnInput struct {
// The id of the column to delete. (Required.)
ColumnID ID `json:"columnId"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// DeleteProjectInput is an autogenerated input type of DeleteProject.
type DeleteProjectInput struct {
// The Project ID to update. (Required.)
ProjectID ID `json:"projectId"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// DeleteProjectNextItemInput is an autogenerated input type of DeleteProjectNextItem.
type DeleteProjectNextItemInput struct {
// The ID of the Project from which the item should be removed. (Required.)
ProjectID ID `json:"projectId"`
// The ID of the item to be removed. (Required.)
ItemID ID `json:"itemId"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// DeletePullRequestReviewCommentInput is an autogenerated input type of DeletePullRequestReviewComment.
type DeletePullRequestReviewCommentInput struct {
// The ID of the comment to delete. (Required.)
ID ID `json:"id"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// DeletePullRequestReviewInput is an autogenerated input type of DeletePullRequestReview.
type DeletePullRequestReviewInput struct {
// The Node ID of the pull request review to delete. (Required.)
PullRequestReviewID ID `json:"pullRequestReviewId"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// DeleteRefInput is an autogenerated input type of DeleteRef.
type DeleteRefInput struct {
// The Node ID of the Ref to be deleted. (Required.)
RefID ID `json:"refId"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// DeleteTeamDiscussionCommentInput is an autogenerated input type of DeleteTeamDiscussionComment.
type DeleteTeamDiscussionCommentInput struct {
// The ID of the comment to delete. (Required.)
ID ID `json:"id"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// DeleteTeamDiscussionInput is an autogenerated input type of DeleteTeamDiscussion.
type DeleteTeamDiscussionInput struct {
// The discussion ID to delete. (Required.)
ID ID `json:"id"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// DeleteVerifiableDomainInput is an autogenerated input type of DeleteVerifiableDomain.
type DeleteVerifiableDomainInput struct {
// The ID of the verifiable domain to delete. (Required.)
ID ID `json:"id"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// DeploymentOrder represents ordering options for deployment connections.
type DeploymentOrder struct {
// The field to order deployments by. (Required.)
Field DeploymentOrderField `json:"field"`
// The ordering direction. (Required.)
Direction OrderDirection `json:"direction"`
}
// DisablePullRequestAutoMergeInput is an autogenerated input type of DisablePullRequestAutoMerge.
type DisablePullRequestAutoMergeInput struct {
// ID of the pull request to disable auto merge on. (Required.)
PullRequestID ID `json:"pullRequestId"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// DiscussionOrder represents ways in which lists of discussions can be ordered upon return.
type DiscussionOrder struct {
// The field by which to order discussions. (Required.)
Field DiscussionOrderField `json:"field"`
// The direction in which to order discussions by the specified field. (Required.)
Direction OrderDirection `json:"direction"`
}
// DismissPullRequestReviewInput is an autogenerated input type of DismissPullRequestReview.
type DismissPullRequestReviewInput struct {
// The Node ID of the pull request review to modify. (Required.)
PullRequestReviewID ID `json:"pullRequestReviewId"`
// The contents of the pull request review dismissal message. (Required.)
Message String `json:"message"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// DismissRepositoryVulnerabilityAlertInput is an autogenerated input type of DismissRepositoryVulnerabilityAlert.
type DismissRepositoryVulnerabilityAlertInput struct {
// The Dependabot alert ID to dismiss. (Required.)
RepositoryVulnerabilityAlertID ID `json:"repositoryVulnerabilityAlertId"`
// The reason the Dependabot alert is being dismissed. (Required.)
DismissReason DismissReason `json:"dismissReason"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// DraftPullRequestReviewComment specifies a review comment to be left with a Pull Request Review.
type DraftPullRequestReviewComment struct {
// Path to the file being commented on. (Required.)
Path String `json:"path"`
// Position in the file to leave a comment on. (Required.)
Position Int `json:"position"`
// Body of the comment to leave. (Required.)
Body String `json:"body"`
}
// DraftPullRequestReviewThread specifies a review comment thread to be left with a Pull Request Review.
type DraftPullRequestReviewThread struct {
// Path to the file being commented on. (Required.)
Path String `json:"path"`
// The line of the blob to which the thread refers. The end of the line range for multi-line comments. (Required.)
Line Int `json:"line"`
// Body of the comment to leave. (Required.)
Body String `json:"body"`
// The side of the diff on which the line resides. For multi-line comments, this is the side for the end of the line range. (Optional.)
Side *DiffSide `json:"side,omitempty"`
// The first line of the range to which the comment refers. (Optional.)
StartLine *Int `json:"startLine,omitempty"`
// The side of the diff on which the start line resides. (Optional.)
StartSide *DiffSide `json:"startSide,omitempty"`
}
// EnablePullRequestAutoMergeInput is an autogenerated input type of EnablePullRequestAutoMerge.
type EnablePullRequestAutoMergeInput struct {
// ID of the pull request to enable auto-merge on. (Required.)
PullRequestID ID `json:"pullRequestId"`
// Commit headline to use for the commit when the PR is mergable; if omitted, a default message will be used. (Optional.)
CommitHeadline *String `json:"commitHeadline,omitempty"`
// Commit body to use for the commit when the PR is mergable; if omitted, a default message will be used. (Optional.)
CommitBody *String `json:"commitBody,omitempty"`
// The merge method to use. If omitted, defaults to 'MERGE'. (Optional.)
MergeMethod *PullRequestMergeMethod `json:"mergeMethod,omitempty"`
// The email address to associate with this merge. (Optional.)
AuthorEmail *String `json:"authorEmail,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// EnterpriseAdministratorInvitationOrder represents ordering options for enterprise administrator invitation connections.
type EnterpriseAdministratorInvitationOrder struct {
// The field to order enterprise administrator invitations by. (Required.)
Field EnterpriseAdministratorInvitationOrderField `json:"field"`
// The ordering direction. (Required.)
Direction OrderDirection `json:"direction"`
}
// EnterpriseMemberOrder represents ordering options for enterprise member connections.
type EnterpriseMemberOrder struct {
// The field to order enterprise members by. (Required.)
Field EnterpriseMemberOrderField `json:"field"`
// The ordering direction. (Required.)
Direction OrderDirection `json:"direction"`
}
// EnterpriseServerInstallationOrder represents ordering options for Enterprise Server installation connections.
type EnterpriseServerInstallationOrder struct {
// The field to order Enterprise Server installations by. (Required.)
Field EnterpriseServerInstallationOrderField `json:"field"`
// The ordering direction. (Required.)
Direction OrderDirection `json:"direction"`
}
// EnterpriseServerUserAccountEmailOrder represents ordering options for Enterprise Server user account email connections.
type EnterpriseServerUserAccountEmailOrder struct {
// The field to order emails by. (Required.)
Field EnterpriseServerUserAccountEmailOrderField `json:"field"`
// The ordering direction. (Required.)
Direction OrderDirection `json:"direction"`
}
// EnterpriseServerUserAccountOrder represents ordering options for Enterprise Server user account connections.
type EnterpriseServerUserAccountOrder struct {
// The field to order user accounts by. (Required.)
Field EnterpriseServerUserAccountOrderField `json:"field"`
// The ordering direction. (Required.)
Direction OrderDirection `json:"direction"`
}
// EnterpriseServerUserAccountsUploadOrder represents ordering options for Enterprise Server user accounts upload connections.
type EnterpriseServerUserAccountsUploadOrder struct {
// The field to order user accounts uploads by. (Required.)
Field EnterpriseServerUserAccountsUploadOrderField `json:"field"`
// The ordering direction. (Required.)
Direction OrderDirection `json:"direction"`
}
// FileAddition represents a command to add a file at the given path with the given contents as part of a commit. Any existing file at that that path will be replaced.
type FileAddition struct {
// The path in the repository where the file will be located. (Required.)
Path String `json:"path"`
// The base64 encoded contents of the file. (Required.)
Contents Base64String `json:"contents"`
}
// FileChanges represents a description of a set of changes to a file tree to be made as part of a git commit, modeled as zero or more file `additions` and zero or more file `deletions`. Both fields are optional; omitting both will produce a commit with no file changes. `deletions` and `additions` describe changes to files identified by their path in the git tree using unix-style path separators, i.e. `/`. The root of a git tree is an empty string, so paths are not slash-prefixed. `path` values must be unique across all `additions` and `deletions` provided. Any duplication will result in a validation error. ### Encoding File contents must be provided in full for each `FileAddition`. The `contents` of a `FileAddition` must be encoded using RFC 4648 compliant base64, i.e. correct padding is required and no characters outside the standard alphabet may be used. Invalid base64 encoding will be rejected with a validation error. The encoded contents may be binary. For text files, no assumptions are made about the character encoding of the file contents (after base64 decoding). No charset transcoding or line-ending normalization will be performed; it is the client's responsibility to manage the character encoding of files they provide. However, for maximum compatibility we recommend using UTF-8 encoding and ensuring that all files in a repository use a consistent line-ending convention (`\n` or `\r\n`), and that all files end with a newline. ### Modeling file changes Each of the the five types of conceptual changes that can be made in a git commit can be described using the `FileChanges` type as follows: 1. New file addition: create file `hello world\n` at path `docs/README.txt`: { "additions" [ { "path": "docs/README.txt", "contents": base64encode("hello world\n") } ] } 2. Existing file modification: change existing `docs/README.txt` to have new content `new content here\n`: { "additions" [ { "path": "docs/README.txt", "contents": base64encode("new content here\n") } ] } 3. Existing file deletion: remove existing file `docs/README.txt`. Note that the path is required to exist -- specifying a path that does not exist on the given branch will abort the commit and return an error. { "deletions" [ { "path": "docs/README.txt" } ] } 4. File rename with no changes: rename `docs/README.txt` with previous content `hello world\n` to the same content at `newdocs/README.txt`: { "deletions" [ { "path": "docs/README.txt", } ], "additions" [ { "path": "newdocs/README.txt", "contents": base64encode("hello world\n") } ] } 5. File rename with changes: rename `docs/README.txt` with previous content `hello world\n` to a file at path `newdocs/README.txt` with content `new contents\n`: { "deletions" [ { "path": "docs/README.txt", } ], "additions" [ { "path": "newdocs/README.txt", "contents": base64encode("new contents\n") } ] }.
type FileChanges struct {
// Files to delete. (Optional.)
Deletions *[]FileDeletion `json:"deletions,omitempty"`
// File to add or change. (Optional.)
Additions *[]FileAddition `json:"additions,omitempty"`
}
// FileDeletion represents a command to delete the file at the given path as part of a commit.
type FileDeletion struct {
// The path to delete. (Required.)
Path String `json:"path"`
}
// FollowOrganizationInput is an autogenerated input type of FollowOrganization.
type FollowOrganizationInput struct {
// ID of the organization to follow. (Required.)
OrganizationID ID `json:"organizationId"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// FollowUserInput is an autogenerated input type of FollowUser.
type FollowUserInput struct {
// ID of the user to follow. (Required.)
UserID ID `json:"userId"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// GistOrder represents ordering options for gist connections.
type GistOrder struct {
// The field to order repositories by. (Required.)
Field GistOrderField `json:"field"`
// The ordering direction. (Required.)
Direction OrderDirection `json:"direction"`
}
// GrantEnterpriseOrganizationsMigratorRoleInput is an autogenerated input type of GrantEnterpriseOrganizationsMigratorRole.
type GrantEnterpriseOrganizationsMigratorRoleInput struct {
// The ID of the enterprise to which all organizations managed by it will be granted the migrator role. (Required.)
EnterpriseID ID `json:"enterpriseId"`
// The login of the user to grant the migrator role. (Required.)
Login String `json:"login"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// GrantMigratorRoleInput is an autogenerated input type of GrantMigratorRole.
type GrantMigratorRoleInput struct {
// The ID of the organization that the user/team belongs to. (Required.)
OrganizationID ID `json:"organizationId"`
// The user login or Team slug to grant the migrator role. (Required.)
Actor String `json:"actor"`
// Specifies the type of the actor, can be either USER or TEAM. (Required.)
ActorType ActorType `json:"actorType"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// InviteEnterpriseAdminInput is an autogenerated input type of InviteEnterpriseAdmin.
type InviteEnterpriseAdminInput struct {
// The ID of the enterprise to which you want to invite an administrator. (Required.)
EnterpriseID ID `json:"enterpriseId"`
// The login of a user to invite as an administrator. (Optional.)
Invitee *String `json:"invitee,omitempty"`
// The email of the person to invite as an administrator. (Optional.)
Email *String `json:"email,omitempty"`
// The role of the administrator. (Optional.)
Role *EnterpriseAdministratorRole `json:"role,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// IpAllowListEntryOrder represents ordering options for IP allow list entry connections.
type IpAllowListEntryOrder struct {
// The field to order IP allow list entries by. (Required.)
Field IpAllowListEntryOrderField `json:"field"`
// The ordering direction. (Required.)
Direction OrderDirection `json:"direction"`
}
// IssueCommentOrder represents ways in which lists of issue comments can be ordered upon return.
type IssueCommentOrder struct {
// The field in which to order issue comments by. (Required.)
Field IssueCommentOrderField `json:"field"`
// The direction in which to order issue comments by the specified field. (Required.)
Direction OrderDirection `json:"direction"`
}
// IssueFilters represents ways in which to filter lists of issues.
type IssueFilters struct {
// List issues assigned to given name. Pass in `null` for issues with no assigned user, and `*` for issues assigned to any user. (Optional.)
Assignee *String `json:"assignee,omitempty"`
// List issues created by given name. (Optional.)
CreatedBy *String `json:"createdBy,omitempty"`
// List issues where the list of label names exist on the issue. (Optional.)
Labels *[]String `json:"labels,omitempty"`
// List issues where the given name is mentioned in the issue. (Optional.)
Mentioned *String `json:"mentioned,omitempty"`
// List issues by given milestone argument. If an string representation of an integer is passed, it should refer to a milestone by its database ID. Pass in `null` for issues with no milestone, and `*` for issues that are assigned to any milestone. (Optional.)
Milestone *String `json:"milestone,omitempty"`
// List issues by given milestone argument. If an string representation of an integer is passed, it should refer to a milestone by its number field. Pass in `null` for issues with no milestone, and `*` for issues that are assigned to any milestone. (Optional.)
MilestoneNumber *String `json:"milestoneNumber,omitempty"`
// List issues that have been updated at or after the given date. (Optional.)
Since *DateTime `json:"since,omitempty"`
// List issues filtered by the list of states given. (Optional.)
States *[]IssueState `json:"states,omitempty"`
// List issues subscribed to by viewer. (Optional.)
ViewerSubscribed *Boolean `json:"viewerSubscribed,omitempty"`
}
// IssueOrder represents ways in which lists of issues can be ordered upon return.
type IssueOrder struct {
// The field in which to order issues by. (Required.)
Field IssueOrderField `json:"field"`
// The direction in which to order issues by the specified field. (Required.)
Direction OrderDirection `json:"direction"`
}
// LabelOrder represents ways in which lists of labels can be ordered upon return.
type LabelOrder struct {
// The field in which to order labels by. (Required.)
Field LabelOrderField `json:"field"`
// The direction in which to order labels by the specified field. (Required.)
Direction OrderDirection `json:"direction"`
}
// LanguageOrder represents ordering options for language connections.
type LanguageOrder struct {
// The field to order languages by. (Required.)
Field LanguageOrderField `json:"field"`
// The ordering direction. (Required.)
Direction OrderDirection `json:"direction"`
}
// LinkRepositoryToProjectInput is an autogenerated input type of LinkRepositoryToProject.
type LinkRepositoryToProjectInput struct {
// The ID of the Project to link to a Repository. (Required.)
ProjectID ID `json:"projectId"`
// The ID of the Repository to link to a Project. (Required.)
RepositoryID ID `json:"repositoryId"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// LockLockableInput is an autogenerated input type of LockLockable.
type LockLockableInput struct {
// ID of the item to be locked. (Required.)
LockableID ID `json:"lockableId"`
// A reason for why the item will be locked. (Optional.)
LockReason *LockReason `json:"lockReason,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// MarkDiscussionCommentAsAnswerInput is an autogenerated input type of MarkDiscussionCommentAsAnswer.
type MarkDiscussionCommentAsAnswerInput struct {
// The Node ID of the discussion comment to mark as an answer. (Required.)
ID ID `json:"id"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// MarkFileAsViewedInput is an autogenerated input type of MarkFileAsViewed.
type MarkFileAsViewedInput struct {
// The Node ID of the pull request. (Required.)
PullRequestID ID `json:"pullRequestId"`
// The path of the file to mark as viewed. (Required.)
Path String `json:"path"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// MarkPullRequestReadyForReviewInput is an autogenerated input type of MarkPullRequestReadyForReview.
type MarkPullRequestReadyForReviewInput struct {
// ID of the pull request to be marked as ready for review. (Required.)
PullRequestID ID `json:"pullRequestId"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// MergeBranchInput is an autogenerated input type of MergeBranch.
type MergeBranchInput struct {
// The Node ID of the Repository containing the base branch that will be modified. (Required.)
RepositoryID ID `json:"repositoryId"`
// The name of the base branch that the provided head will be merged into. (Required.)
Base String `json:"base"`
// The head to merge into the base branch. This can be a branch name or a commit GitObjectID. (Required.)
Head String `json:"head"`
// Message to use for the merge commit. If omitted, a default will be used. (Optional.)
CommitMessage *String `json:"commitMessage,omitempty"`
// The email address to associate with this commit. (Optional.)
AuthorEmail *String `json:"authorEmail,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// MergePullRequestInput is an autogenerated input type of MergePullRequest.
type MergePullRequestInput struct {
// ID of the pull request to be merged. (Required.)
PullRequestID ID `json:"pullRequestId"`
// Commit headline to use for the merge commit; if omitted, a default message will be used. (Optional.)
CommitHeadline *String `json:"commitHeadline,omitempty"`
// Commit body to use for the merge commit; if omitted, a default message will be used. (Optional.)
CommitBody *String `json:"commitBody,omitempty"`
// OID that the pull request head ref must match to allow merge; if omitted, no check is performed. (Optional.)
ExpectedHeadOid *GitObjectID `json:"expectedHeadOid,omitempty"`
// The merge method to use. If omitted, defaults to 'MERGE'. (Optional.)
MergeMethod *PullRequestMergeMethod `json:"mergeMethod,omitempty"`
// The email address to associate with this merge. (Optional.)
AuthorEmail *String `json:"authorEmail,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// MilestoneOrder represents ordering options for milestone connections.
type MilestoneOrder struct {
// The field to order milestones by. (Required.)
Field MilestoneOrderField `json:"field"`
// The ordering direction. (Required.)
Direction OrderDirection `json:"direction"`
}
// MinimizeCommentInput is an autogenerated input type of MinimizeComment.
type MinimizeCommentInput struct {
// The Node ID of the subject to modify. (Required.)
SubjectID ID `json:"subjectId"`
// The classification of comment. (Required.)
Classifier ReportedContentClassifiers `json:"classifier"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// MoveProjectCardInput is an autogenerated input type of MoveProjectCard.
type MoveProjectCardInput struct {
// The id of the card to move. (Required.)
CardID ID `json:"cardId"`
// The id of the column to move it into. (Required.)
ColumnID ID `json:"columnId"`
// Place the new card after the card with this id. Pass null to place it at the top. (Optional.)
AfterCardID *ID `json:"afterCardId,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// MoveProjectColumnInput is an autogenerated input type of MoveProjectColumn.
type MoveProjectColumnInput struct {
// The id of the column to move. (Required.)
ColumnID ID `json:"columnId"`
// Place the new column after the column with this id. Pass null to place it at the front. (Optional.)
AfterColumnID *ID `json:"afterColumnId,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// OrgEnterpriseOwnerOrder represents ordering options for an organization's enterprise owner connections.
type OrgEnterpriseOwnerOrder struct {
// The field to order enterprise owners by. (Required.)
Field OrgEnterpriseOwnerOrderField `json:"field"`
// The ordering direction. (Required.)
Direction OrderDirection `json:"direction"`
}
// OrganizationOrder represents ordering options for organization connections.
type OrganizationOrder struct {
// The field to order organizations by. (Required.)
Field OrganizationOrderField `json:"field"`
// The ordering direction. (Required.)
Direction OrderDirection `json:"direction"`
}
// PackageFileOrder represents ways in which lists of package files can be ordered upon return.
type PackageFileOrder struct {
// The field in which to order package files by. (Optional.)
Field *PackageFileOrderField `json:"field,omitempty"`
// The direction in which to order package files by the specified field. (Optional.)
Direction *OrderDirection `json:"direction,omitempty"`
}
// PackageOrder represents ways in which lists of packages can be ordered upon return.
type PackageOrder struct {
// The field in which to order packages by. (Optional.)
Field *PackageOrderField `json:"field,omitempty"`
// The direction in which to order packages by the specified field. (Optional.)
Direction *OrderDirection `json:"direction,omitempty"`
}
// PackageVersionOrder represents ways in which lists of package versions can be ordered upon return.
type PackageVersionOrder struct {
// The field in which to order package versions by. (Optional.)
Field *PackageVersionOrderField `json:"field,omitempty"`
// The direction in which to order package versions by the specified field. (Optional.)
Direction *OrderDirection `json:"direction,omitempty"`
}
// PinIssueInput is an autogenerated input type of PinIssue.
type PinIssueInput struct {
// The ID of the issue to be pinned. (Required.)
IssueID ID `json:"issueId"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// ProjectOrder represents ways in which lists of projects can be ordered upon return.
type ProjectOrder struct {
// The field in which to order projects by. (Required.)
Field ProjectOrderField `json:"field"`
// The direction in which to order projects by the specified field. (Required.)
Direction OrderDirection `json:"direction"`
}
// PullRequestOrder represents ways in which lists of issues can be ordered upon return.
type PullRequestOrder struct {
// The field in which to order pull requests by. (Required.)
Field PullRequestOrderField `json:"field"`
// The direction in which to order pull requests by the specified field. (Required.)
Direction OrderDirection `json:"direction"`
}
// ReactionOrder represents ways in which lists of reactions can be ordered upon return.
type ReactionOrder struct {
// The field in which to order reactions by. (Required.)
Field ReactionOrderField `json:"field"`
// The direction in which to order reactions by the specified field. (Required.)
Direction OrderDirection `json:"direction"`
}
// RefOrder represents ways in which lists of git refs can be ordered upon return.
type RefOrder struct {
// The field in which to order refs by. (Required.)
Field RefOrderField `json:"field"`
// The direction in which to order refs by the specified field. (Required.)
Direction OrderDirection `json:"direction"`
}
// RegenerateEnterpriseIdentityProviderRecoveryCodesInput is an autogenerated input type of RegenerateEnterpriseIdentityProviderRecoveryCodes.
type RegenerateEnterpriseIdentityProviderRecoveryCodesInput struct {
// The ID of the enterprise on which to set an identity provider. (Required.)
EnterpriseID ID `json:"enterpriseId"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// RegenerateVerifiableDomainTokenInput is an autogenerated input type of RegenerateVerifiableDomainToken.
type RegenerateVerifiableDomainTokenInput struct {
// The ID of the verifiable domain to regenerate the verification token of. (Required.)
ID ID `json:"id"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// RejectDeploymentsInput is an autogenerated input type of RejectDeployments.
type RejectDeploymentsInput struct {
// The node ID of the workflow run containing the pending deployments. (Required.)
WorkflowRunID ID `json:"workflowRunId"`
// The ids of environments to reject deployments. (Required.)
EnvironmentIDs []ID `json:"environmentIds"`
// Optional comment for rejecting deployments. (Optional.)
Comment *String `json:"comment,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// ReleaseOrder represents ways in which lists of releases can be ordered upon return.
type ReleaseOrder struct {
// The field in which to order releases by. (Required.)
Field ReleaseOrderField `json:"field"`
// The direction in which to order releases by the specified field. (Required.)
Direction OrderDirection `json:"direction"`
}
// RemoveAssigneesFromAssignableInput is an autogenerated input type of RemoveAssigneesFromAssignable.
type RemoveAssigneesFromAssignableInput struct {
// The id of the assignable object to remove assignees from. (Required.)
AssignableID ID `json:"assignableId"`
// The id of users to remove as assignees. (Required.)
AssigneeIDs []ID `json:"assigneeIds"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// RemoveEnterpriseAdminInput is an autogenerated input type of RemoveEnterpriseAdmin.
type RemoveEnterpriseAdminInput struct {
// The Enterprise ID from which to remove the administrator. (Required.)
EnterpriseID ID `json:"enterpriseId"`
// The login of the user to remove as an administrator. (Required.)
Login String `json:"login"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// RemoveEnterpriseIdentityProviderInput is an autogenerated input type of RemoveEnterpriseIdentityProvider.
type RemoveEnterpriseIdentityProviderInput struct {
// The ID of the enterprise from which to remove the identity provider. (Required.)
EnterpriseID ID `json:"enterpriseId"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// RemoveEnterpriseOrganizationInput is an autogenerated input type of RemoveEnterpriseOrganization.
type RemoveEnterpriseOrganizationInput struct {
// The ID of the enterprise from which the organization should be removed. (Required.)
EnterpriseID ID `json:"enterpriseId"`
// The ID of the organization to remove from the enterprise. (Required.)
OrganizationID ID `json:"organizationId"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// RemoveEnterpriseSupportEntitlementInput is an autogenerated input type of RemoveEnterpriseSupportEntitlement.
type RemoveEnterpriseSupportEntitlementInput struct {
// The ID of the Enterprise which the admin belongs to. (Required.)
EnterpriseID ID `json:"enterpriseId"`
// The login of a member who will lose the support entitlement. (Required.)
Login String `json:"login"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// RemoveLabelsFromLabelableInput is an autogenerated input type of RemoveLabelsFromLabelable.
type RemoveLabelsFromLabelableInput struct {
// The id of the Labelable to remove labels from. (Required.)
LabelableID ID `json:"labelableId"`
// The ids of labels to remove. (Required.)
LabelIDs []ID `json:"labelIds"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// RemoveOutsideCollaboratorInput is an autogenerated input type of RemoveOutsideCollaborator.
type RemoveOutsideCollaboratorInput struct {
// The ID of the outside collaborator to remove. (Required.)
UserID ID `json:"userId"`
// The ID of the organization to remove the outside collaborator from. (Required.)
OrganizationID ID `json:"organizationId"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// RemoveReactionInput is an autogenerated input type of RemoveReaction.
type RemoveReactionInput struct {
// The Node ID of the subject to modify. (Required.)
SubjectID ID `json:"subjectId"`
// The name of the emoji reaction to remove. (Required.)
Content ReactionContent `json:"content"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// RemoveStarInput is an autogenerated input type of RemoveStar.
type RemoveStarInput struct {
// The Starrable ID to unstar. (Required.)
StarrableID ID `json:"starrableId"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// RemoveUpvoteInput is an autogenerated input type of RemoveUpvote.
type RemoveUpvoteInput struct {
// The Node ID of the discussion or comment to remove upvote. (Required.)
SubjectID ID `json:"subjectId"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// ReopenIssueInput is an autogenerated input type of ReopenIssue.
type ReopenIssueInput struct {
// ID of the issue to be opened. (Required.)
IssueID ID `json:"issueId"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// ReopenPullRequestInput is an autogenerated input type of ReopenPullRequest.
type ReopenPullRequestInput struct {
// ID of the pull request to be reopened. (Required.)
PullRequestID ID `json:"pullRequestId"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// RepositoryInvitationOrder represents ordering options for repository invitation connections.
type RepositoryInvitationOrder struct {
// The field to order repository invitations by. (Required.)
Field RepositoryInvitationOrderField `json:"field"`
// The ordering direction. (Required.)
Direction OrderDirection `json:"direction"`
}
// RepositoryMigrationOrder represents ordering options for repository migrations.
type RepositoryMigrationOrder struct {
// The field to order repository migrations by. (Required.)
Field RepositoryMigrationOrderField `json:"field"`
// The ordering direction. (Required.)
Direction RepositoryMigrationOrderDirection `json:"direction"`
}
// RepositoryOrder represents ordering options for repository connections.
type RepositoryOrder struct {
// The field to order repositories by. (Required.)
Field RepositoryOrderField `json:"field"`
// The ordering direction. (Required.)
Direction OrderDirection `json:"direction"`
}
// RequestReviewsInput is an autogenerated input type of RequestReviews.
type RequestReviewsInput struct {
// The Node ID of the pull request to modify. (Required.)
PullRequestID ID `json:"pullRequestId"`
// The Node IDs of the user to request. (Optional.)
UserIDs *[]ID `json:"userIds,omitempty"`
// The Node IDs of the team to request. (Optional.)
TeamIDs *[]ID `json:"teamIds,omitempty"`
// Add users to the set rather than replace. (Optional.)
Union *Boolean `json:"union,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// RequiredStatusCheckInput specifies the attributes for a new or updated required status check.
type RequiredStatusCheckInput struct {
// Status check context that must pass for commits to be accepted to the matching branch. (Required.)
Context String `json:"context"`
// The ID of the App that must set the status in order for it to be accepted. Omit this value to use whichever app has recently been setting this status, or use "any" to allow any app to set the status. (Optional.)
AppID *ID `json:"appId,omitempty"`
}
// RerequestCheckSuiteInput is an autogenerated input type of RerequestCheckSuite.
type RerequestCheckSuiteInput struct {
// The Node ID of the repository. (Required.)
RepositoryID ID `json:"repositoryId"`
// The Node ID of the check suite. (Required.)
CheckSuiteID ID `json:"checkSuiteId"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// ResolveReviewThreadInput is an autogenerated input type of ResolveReviewThread.
type ResolveReviewThreadInput struct {
// The ID of the thread to resolve. (Required.)
ThreadID ID `json:"threadId"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// RevokeEnterpriseOrganizationsMigratorRoleInput is an autogenerated input type of RevokeEnterpriseOrganizationsMigratorRole.
type RevokeEnterpriseOrganizationsMigratorRoleInput struct {
// The ID of the enterprise to which all organizations managed by it will be granted the migrator role. (Required.)
EnterpriseID ID `json:"enterpriseId"`
// The login of the user to revoke the migrator role. (Required.)
Login String `json:"login"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// RevokeMigratorRoleInput is an autogenerated input type of RevokeMigratorRole.
type RevokeMigratorRoleInput struct {
// The ID of the organization that the user/team belongs to. (Required.)
OrganizationID ID `json:"organizationId"`
// The user login or Team slug to revoke the migrator role from. (Required.)
Actor String `json:"actor"`
// Specifies the type of the actor, can be either USER or TEAM. (Required.)
ActorType ActorType `json:"actorType"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// SavedReplyOrder represents ordering options for saved reply connections.
type SavedReplyOrder struct {
// The field to order saved replies by. (Required.)
Field SavedReplyOrderField `json:"field"`
// The ordering direction. (Required.)
Direction OrderDirection `json:"direction"`
}
// SecurityAdvisoryIdentifierFilter represents an advisory identifier to filter results on.
type SecurityAdvisoryIdentifierFilter struct {
// The identifier type. (Required.)
Type SecurityAdvisoryIdentifierType `json:"type"`
// The identifier string. Supports exact or partial matching. (Required.)
Value String `json:"value"`
}
// SecurityAdvisoryOrder represents ordering options for security advisory connections.
type SecurityAdvisoryOrder struct {
// The field to order security advisories by. (Required.)
Field SecurityAdvisoryOrderField `json:"field"`
// The ordering direction. (Required.)
Direction OrderDirection `json:"direction"`
}
// SecurityVulnerabilityOrder represents ordering options for security vulnerability connections.
type SecurityVulnerabilityOrder struct {
// The field to order security vulnerabilities by. (Required.)
Field SecurityVulnerabilityOrderField `json:"field"`
// The ordering direction. (Required.)
Direction OrderDirection `json:"direction"`
}
// SetEnterpriseIdentityProviderInput is an autogenerated input type of SetEnterpriseIdentityProvider.
type SetEnterpriseIdentityProviderInput struct {
// The ID of the enterprise on which to set an identity provider. (Required.)
EnterpriseID ID `json:"enterpriseId"`
// The URL endpoint for the identity provider's SAML SSO. (Required.)
SsoURL URI `json:"ssoUrl"`
// The x509 certificate used by the identity provider to sign assertions and responses. (Required.)
IdpCertificate String `json:"idpCertificate"`
// The signature algorithm used to sign SAML requests for the identity provider. (Required.)
SignatureMethod SamlSignatureAlgorithm `json:"signatureMethod"`
// The digest algorithm used to sign SAML requests for the identity provider. (Required.)
DigestMethod SamlDigestAlgorithm `json:"digestMethod"`
// The Issuer Entity ID for the SAML identity provider. (Optional.)
Issuer *String `json:"issuer,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// SetOrganizationInteractionLimitInput is an autogenerated input type of SetOrganizationInteractionLimit.
type SetOrganizationInteractionLimitInput struct {
// The ID of the organization to set a limit for. (Required.)
OrganizationID ID `json:"organizationId"`
// The limit to set. (Required.)
Limit RepositoryInteractionLimit `json:"limit"`
// When this limit should expire. (Optional.)
Expiry *RepositoryInteractionLimitExpiry `json:"expiry,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// SetRepositoryInteractionLimitInput is an autogenerated input type of SetRepositoryInteractionLimit.
type SetRepositoryInteractionLimitInput struct {
// The ID of the repository to set a limit for. (Required.)
RepositoryID ID `json:"repositoryId"`
// The limit to set. (Required.)
Limit RepositoryInteractionLimit `json:"limit"`
// When this limit should expire. (Optional.)
Expiry *RepositoryInteractionLimitExpiry `json:"expiry,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// SetUserInteractionLimitInput is an autogenerated input type of SetUserInteractionLimit.
type SetUserInteractionLimitInput struct {
// The ID of the user to set a limit for. (Required.)
UserID ID `json:"userId"`
// The limit to set. (Required.)
Limit RepositoryInteractionLimit `json:"limit"`
// When this limit should expire. (Optional.)
Expiry *RepositoryInteractionLimitExpiry `json:"expiry,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// SponsorOrder represents ordering options for connections to get sponsor entities for GitHub Sponsors.
type SponsorOrder struct {
// The field to order sponsor entities by. (Required.)
Field SponsorOrderField `json:"field"`
// The ordering direction. (Required.)
Direction OrderDirection `json:"direction"`
}
// SponsorableOrder represents ordering options for connections to get sponsorable entities for GitHub Sponsors.
type SponsorableOrder struct {
// The field to order sponsorable entities by. (Required.)
Field SponsorableOrderField `json:"field"`
// The ordering direction. (Required.)
Direction OrderDirection `json:"direction"`
}
// SponsorsActivityOrder represents ordering options for GitHub Sponsors activity connections.
type SponsorsActivityOrder struct {
// The field to order activity by. (Required.)
Field SponsorsActivityOrderField `json:"field"`
// The ordering direction. (Required.)
Direction OrderDirection `json:"direction"`
}
// SponsorsTierOrder represents ordering options for Sponsors tiers connections.
type SponsorsTierOrder struct {
// The field to order tiers by. (Required.)
Field SponsorsTierOrderField `json:"field"`
// The ordering direction. (Required.)
Direction OrderDirection `json:"direction"`
}
// SponsorshipNewsletterOrder represents ordering options for sponsorship newsletter connections.
type SponsorshipNewsletterOrder struct {
// The field to order sponsorship newsletters by. (Required.)
Field SponsorshipNewsletterOrderField `json:"field"`
// The ordering direction. (Required.)
Direction OrderDirection `json:"direction"`
}
// SponsorshipOrder represents ordering options for sponsorship connections.
type SponsorshipOrder struct {
// The field to order sponsorship by. (Required.)
Field SponsorshipOrderField `json:"field"`
// The ordering direction. (Required.)
Direction OrderDirection `json:"direction"`
}
// StarOrder represents ways in which star connections can be ordered.
type StarOrder struct {
// The field in which to order nodes by. (Required.)
Field StarOrderField `json:"field"`
// The direction in which to order nodes. (Required.)
Direction OrderDirection `json:"direction"`
}
// StartRepositoryMigrationInput is an autogenerated input type of StartRepositoryMigration.
type StartRepositoryMigrationInput struct {
// The ID of the Octoshift migration source. (Required.)
SourceID ID `json:"sourceId"`
// The ID of the organization that will own the imported repository. (Required.)
OwnerID ID `json:"ownerId"`
// The Octoshift migration source repository URL. (Required.)
SourceRepositoryURL URI `json:"sourceRepositoryUrl"`
// The name of the imported repository. (Required.)
RepositoryName String `json:"repositoryName"`
// Whether to continue the migration on error. (Optional.)
ContinueOnError *Boolean `json:"continueOnError,omitempty"`
// The signed URL to access the user-uploaded git archive. (Optional.)
GitArchiveURL *String `json:"gitArchiveUrl,omitempty"`
// The signed URL to access the user-uploaded metadata archive. (Optional.)
MetadataArchiveURL *String `json:"metadataArchiveUrl,omitempty"`
// The Octoshift migration source access token. (Optional.)
AccessToken *String `json:"accessToken,omitempty"`
// The GitHub personal access token of the user importing to the target repository. (Optional.)
GitHubPat *String `json:"githubPat,omitempty"`
// Whether to skip migrating releases for the repository. (Optional.)
SkipReleases *Boolean `json:"skipReleases,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// SubmitPullRequestReviewInput is an autogenerated input type of SubmitPullRequestReview.
type SubmitPullRequestReviewInput struct {
// The event to send to the Pull Request Review. (Required.)
Event PullRequestReviewEvent `json:"event"`
// The Pull Request ID to submit any pending reviews. (Optional.)
PullRequestID *ID `json:"pullRequestId,omitempty"`
// The Pull Request Review ID to submit. (Optional.)
PullRequestReviewID *ID `json:"pullRequestReviewId,omitempty"`
// The text field to set on the Pull Request Review. (Optional.)
Body *String `json:"body,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// TeamDiscussionCommentOrder represents ways in which team discussion comment connections can be ordered.
type TeamDiscussionCommentOrder struct {
// The field by which to order nodes. (Required.)
Field TeamDiscussionCommentOrderField `json:"field"`
// The direction in which to order nodes. (Required.)
Direction OrderDirection `json:"direction"`
}
// TeamDiscussionOrder represents ways in which team discussion connections can be ordered.
type TeamDiscussionOrder struct {
// The field by which to order nodes. (Required.)
Field TeamDiscussionOrderField `json:"field"`
// The direction in which to order nodes. (Required.)
Direction OrderDirection `json:"direction"`
}
// TeamMemberOrder represents ordering options for team member connections.
type TeamMemberOrder struct {
// The field to order team members by. (Required.)
Field TeamMemberOrderField `json:"field"`
// The ordering direction. (Required.)
Direction OrderDirection `json:"direction"`
}
// TeamOrder represents ways in which team connections can be ordered.
type TeamOrder struct {
// The field in which to order nodes by. (Required.)
Field TeamOrderField `json:"field"`
// The direction in which to order nodes. (Required.)
Direction OrderDirection `json:"direction"`
}
// TeamRepositoryOrder represents ordering options for team repository connections.
type TeamRepositoryOrder struct {
// The field to order repositories by. (Required.)
Field TeamRepositoryOrderField `json:"field"`
// The ordering direction. (Required.)
Direction OrderDirection `json:"direction"`
}
// TransferIssueInput is an autogenerated input type of TransferIssue.
type TransferIssueInput struct {
// The Node ID of the issue to be transferred. (Required.)
IssueID ID `json:"issueId"`
// The Node ID of the repository the issue should be transferred to. (Required.)
RepositoryID ID `json:"repositoryId"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UnarchiveRepositoryInput is an autogenerated input type of UnarchiveRepository.
type UnarchiveRepositoryInput struct {
// The ID of the repository to unarchive. (Required.)
RepositoryID ID `json:"repositoryId"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UnfollowOrganizationInput is an autogenerated input type of UnfollowOrganization.
type UnfollowOrganizationInput struct {
// ID of the organization to unfollow. (Required.)
OrganizationID ID `json:"organizationId"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UnfollowUserInput is an autogenerated input type of UnfollowUser.
type UnfollowUserInput struct {
// ID of the user to unfollow. (Required.)
UserID ID `json:"userId"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UnlinkRepositoryFromProjectInput is an autogenerated input type of UnlinkRepositoryFromProject.
type UnlinkRepositoryFromProjectInput struct {
// The ID of the Project linked to the Repository. (Required.)
ProjectID ID `json:"projectId"`
// The ID of the Repository linked to the Project. (Required.)
RepositoryID ID `json:"repositoryId"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UnlockLockableInput is an autogenerated input type of UnlockLockable.
type UnlockLockableInput struct {
// ID of the item to be unlocked. (Required.)
LockableID ID `json:"lockableId"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UnmarkDiscussionCommentAsAnswerInput is an autogenerated input type of UnmarkDiscussionCommentAsAnswer.
type UnmarkDiscussionCommentAsAnswerInput struct {
// The Node ID of the discussion comment to unmark as an answer. (Required.)
ID ID `json:"id"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UnmarkFileAsViewedInput is an autogenerated input type of UnmarkFileAsViewed.
type UnmarkFileAsViewedInput struct {
// The Node ID of the pull request. (Required.)
PullRequestID ID `json:"pullRequestId"`
// The path of the file to mark as unviewed. (Required.)
Path String `json:"path"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UnmarkIssueAsDuplicateInput is an autogenerated input type of UnmarkIssueAsDuplicate.
type UnmarkIssueAsDuplicateInput struct {
// ID of the issue or pull request currently marked as a duplicate. (Required.)
DuplicateID ID `json:"duplicateId"`
// ID of the issue or pull request currently considered canonical/authoritative/original. (Required.)
CanonicalID ID `json:"canonicalId"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UnminimizeCommentInput is an autogenerated input type of UnminimizeComment.
type UnminimizeCommentInput struct {
// The Node ID of the subject to modify. (Required.)
SubjectID ID `json:"subjectId"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UnpinIssueInput is an autogenerated input type of UnpinIssue.
type UnpinIssueInput struct {
// The ID of the issue to be unpinned. (Required.)
IssueID ID `json:"issueId"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UnresolveReviewThreadInput is an autogenerated input type of UnresolveReviewThread.
type UnresolveReviewThreadInput struct {
// The ID of the thread to unresolve. (Required.)
ThreadID ID `json:"threadId"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UpdateBranchProtectionRuleInput is an autogenerated input type of UpdateBranchProtectionRule.
type UpdateBranchProtectionRuleInput struct {
// The global relay id of the branch protection rule to be updated. (Required.)
BranchProtectionRuleID ID `json:"branchProtectionRuleId"`
// The glob-like pattern used to determine matching branches. (Optional.)
Pattern *String `json:"pattern,omitempty"`
// Are approving reviews required to update matching branches. (Optional.)
RequiresApprovingReviews *Boolean `json:"requiresApprovingReviews,omitempty"`
// Number of approving reviews required to update matching branches. (Optional.)
RequiredApprovingReviewCount *Int `json:"requiredApprovingReviewCount,omitempty"`
// Are commits required to be signed. (Optional.)
RequiresCommitSignatures *Boolean `json:"requiresCommitSignatures,omitempty"`
// Are merge commits prohibited from being pushed to this branch. (Optional.)
RequiresLinearHistory *Boolean `json:"requiresLinearHistory,omitempty"`
// Is branch creation a protected operation. (Optional.)
BlocksCreations *Boolean `json:"blocksCreations,omitempty"`
// Are force pushes allowed on this branch. (Optional.)
AllowsForcePushes *Boolean `json:"allowsForcePushes,omitempty"`
// Can this branch be deleted. (Optional.)
AllowsDeletions *Boolean `json:"allowsDeletions,omitempty"`
// Can admins overwrite branch protection. (Optional.)
IsAdminEnforced *Boolean `json:"isAdminEnforced,omitempty"`
// Are status checks required to update matching branches. (Optional.)
RequiresStatusChecks *Boolean `json:"requiresStatusChecks,omitempty"`
// Are branches required to be up to date before merging. (Optional.)
RequiresStrictStatusChecks *Boolean `json:"requiresStrictStatusChecks,omitempty"`
// Are reviews from code owners required to update matching branches. (Optional.)
RequiresCodeOwnerReviews *Boolean `json:"requiresCodeOwnerReviews,omitempty"`
// Will new commits pushed to matching branches dismiss pull request review approvals. (Optional.)
DismissesStaleReviews *Boolean `json:"dismissesStaleReviews,omitempty"`
// Is dismissal of pull request reviews restricted. (Optional.)
RestrictsReviewDismissals *Boolean `json:"restrictsReviewDismissals,omitempty"`
// A list of User or Team IDs allowed to dismiss reviews on pull requests targeting matching branches. (Optional.)
ReviewDismissalActorIDs *[]ID `json:"reviewDismissalActorIds,omitempty"`
// A list of User or Team IDs allowed to bypass pull requests targeting matching branches. (Optional.)
BypassPullRequestActorIDs *[]ID `json:"bypassPullRequestActorIds,omitempty"`
// A list of User or Team IDs allowed to bypass force push targeting matching branches. (Optional.)
BypassForcePushActorIDs *[]ID `json:"bypassForcePushActorIds,omitempty"`
// Is pushing to matching branches restricted. (Optional.)
RestrictsPushes *Boolean `json:"restrictsPushes,omitempty"`
// A list of User, Team, or App IDs allowed to push to matching branches. (Optional.)
PushActorIDs *[]ID `json:"pushActorIds,omitempty"`
// List of required status check contexts that must pass for commits to be accepted to matching branches. (Optional.)
RequiredStatusCheckContexts *[]String `json:"requiredStatusCheckContexts,omitempty"`
// The list of required status checks. (Optional.)
RequiredStatusChecks *[]RequiredStatusCheckInput `json:"requiredStatusChecks,omitempty"`
// Are conversations required to be resolved before merging. (Optional.)
RequiresConversationResolution *Boolean `json:"requiresConversationResolution,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UpdateCheckRunInput is an autogenerated input type of UpdateCheckRun.
type UpdateCheckRunInput struct {
// The node ID of the repository. (Required.)
RepositoryID ID `json:"repositoryId"`
// The node of the check. (Required.)
CheckRunID ID `json:"checkRunId"`
// The name of the check. (Optional.)
Name *String `json:"name,omitempty"`
// The URL of the integrator's site that has the full details of the check. (Optional.)
DetailsURL *URI `json:"detailsUrl,omitempty"`
// A reference for the run on the integrator's system. (Optional.)
ExternalID *String `json:"externalId,omitempty"`
// The current status. (Optional.)
Status *RequestableCheckStatusState `json:"status,omitempty"`
// The time that the check run began. (Optional.)
StartedAt *DateTime `json:"startedAt,omitempty"`
// The final conclusion of the check. (Optional.)
Conclusion *CheckConclusionState `json:"conclusion,omitempty"`
// The time that the check run finished. (Optional.)
CompletedAt *DateTime `json:"completedAt,omitempty"`
// Descriptive details about the run. (Optional.)
Output *CheckRunOutput `json:"output,omitempty"`
// Possible further actions the integrator can perform, which a user may trigger. (Optional.)
Actions *[]CheckRunAction `json:"actions,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UpdateCheckSuitePreferencesInput is an autogenerated input type of UpdateCheckSuitePreferences.
type UpdateCheckSuitePreferencesInput struct {
// The Node ID of the repository. (Required.)
RepositoryID ID `json:"repositoryId"`
// The check suite preferences to modify. (Required.)
AutoTriggerPreferences []CheckSuiteAutoTriggerPreference `json:"autoTriggerPreferences"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UpdateDiscussionCommentInput is an autogenerated input type of UpdateDiscussionComment.
type UpdateDiscussionCommentInput struct {
// The Node ID of the discussion comment to update. (Required.)
CommentID ID `json:"commentId"`
// The new contents of the comment body. (Required.)
Body String `json:"body"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UpdateDiscussionInput is an autogenerated input type of UpdateDiscussion.
type UpdateDiscussionInput struct {
// The Node ID of the discussion to update. (Required.)
DiscussionID ID `json:"discussionId"`
// The new discussion title. (Optional.)
Title *String `json:"title,omitempty"`
// The new contents of the discussion body. (Optional.)
Body *String `json:"body,omitempty"`
// The Node ID of a discussion category within the same repository to change this discussion to. (Optional.)
CategoryID *ID `json:"categoryId,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UpdateEnterpriseAdministratorRoleInput is an autogenerated input type of UpdateEnterpriseAdministratorRole.
type UpdateEnterpriseAdministratorRoleInput struct {
// The ID of the Enterprise which the admin belongs to. (Required.)
EnterpriseID ID `json:"enterpriseId"`
// The login of a administrator whose role is being changed. (Required.)
Login String `json:"login"`
// The new role for the Enterprise administrator. (Required.)
Role EnterpriseAdministratorRole `json:"role"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput is an autogenerated input type of UpdateEnterpriseAllowPrivateRepositoryForkingSetting.
type UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput struct {
// The ID of the enterprise on which to set the allow private repository forking setting. (Required.)
EnterpriseID ID `json:"enterpriseId"`
// The value for the allow private repository forking setting on the enterprise. (Required.)
SettingValue EnterpriseEnabledDisabledSettingValue `json:"settingValue"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UpdateEnterpriseDefaultRepositoryPermissionSettingInput is an autogenerated input type of UpdateEnterpriseDefaultRepositoryPermissionSetting.
type UpdateEnterpriseDefaultRepositoryPermissionSettingInput struct {
// The ID of the enterprise on which to set the base repository permission setting. (Required.)
EnterpriseID ID `json:"enterpriseId"`
// The value for the base repository permission setting on the enterprise. (Required.)
SettingValue EnterpriseDefaultRepositoryPermissionSettingValue `json:"settingValue"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput is an autogenerated input type of UpdateEnterpriseMembersCanChangeRepositoryVisibilitySetting.
type UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput struct {
// The ID of the enterprise on which to set the members can change repository visibility setting. (Required.)
EnterpriseID ID `json:"enterpriseId"`
// The value for the members can change repository visibility setting on the enterprise. (Required.)
SettingValue EnterpriseEnabledDisabledSettingValue `json:"settingValue"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UpdateEnterpriseMembersCanCreateRepositoriesSettingInput is an autogenerated input type of UpdateEnterpriseMembersCanCreateRepositoriesSetting.
type UpdateEnterpriseMembersCanCreateRepositoriesSettingInput struct {
// The ID of the enterprise on which to set the members can create repositories setting. (Required.)
EnterpriseID ID `json:"enterpriseId"`
// Value for the members can create repositories setting on the enterprise. This or the granular public/private/internal allowed fields (but not both) must be provided. (Optional.)
SettingValue *EnterpriseMembersCanCreateRepositoriesSettingValue `json:"settingValue,omitempty"`
// When false, allow member organizations to set their own repository creation member privileges. (Optional.)
MembersCanCreateRepositoriesPolicyEnabled *Boolean `json:"membersCanCreateRepositoriesPolicyEnabled,omitempty"`
// Allow members to create public repositories. Defaults to current value. (Optional.)
MembersCanCreatePublicRepositories *Boolean `json:"membersCanCreatePublicRepositories,omitempty"`
// Allow members to create private repositories. Defaults to current value. (Optional.)
MembersCanCreatePrivateRepositories *Boolean `json:"membersCanCreatePrivateRepositories,omitempty"`
// Allow members to create internal repositories. Defaults to current value. (Optional.)
MembersCanCreateInternalRepositories *Boolean `json:"membersCanCreateInternalRepositories,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UpdateEnterpriseMembersCanDeleteIssuesSettingInput is an autogenerated input type of UpdateEnterpriseMembersCanDeleteIssuesSetting.
type UpdateEnterpriseMembersCanDeleteIssuesSettingInput struct {
// The ID of the enterprise on which to set the members can delete issues setting. (Required.)
EnterpriseID ID `json:"enterpriseId"`
// The value for the members can delete issues setting on the enterprise. (Required.)
SettingValue EnterpriseEnabledDisabledSettingValue `json:"settingValue"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput is an autogenerated input type of UpdateEnterpriseMembersCanDeleteRepositoriesSetting.
type UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput struct {
// The ID of the enterprise on which to set the members can delete repositories setting. (Required.)
EnterpriseID ID `json:"enterpriseId"`
// The value for the members can delete repositories setting on the enterprise. (Required.)
SettingValue EnterpriseEnabledDisabledSettingValue `json:"settingValue"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput is an autogenerated input type of UpdateEnterpriseMembersCanInviteCollaboratorsSetting.
type UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput struct {
// The ID of the enterprise on which to set the members can invite collaborators setting. (Required.)
EnterpriseID ID `json:"enterpriseId"`
// The value for the members can invite collaborators setting on the enterprise. (Required.)
SettingValue EnterpriseEnabledDisabledSettingValue `json:"settingValue"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UpdateEnterpriseMembersCanMakePurchasesSettingInput is an autogenerated input type of UpdateEnterpriseMembersCanMakePurchasesSetting.
type UpdateEnterpriseMembersCanMakePurchasesSettingInput struct {
// The ID of the enterprise on which to set the members can make purchases setting. (Required.)
EnterpriseID ID `json:"enterpriseId"`
// The value for the members can make purchases setting on the enterprise. (Required.)
SettingValue EnterpriseMembersCanMakePurchasesSettingValue `json:"settingValue"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput is an autogenerated input type of UpdateEnterpriseMembersCanUpdateProtectedBranchesSetting.
type UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput struct {
// The ID of the enterprise on which to set the members can update protected branches setting. (Required.)
EnterpriseID ID `json:"enterpriseId"`
// The value for the members can update protected branches setting on the enterprise. (Required.)
SettingValue EnterpriseEnabledDisabledSettingValue `json:"settingValue"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput is an autogenerated input type of UpdateEnterpriseMembersCanViewDependencyInsightsSetting.
type UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput struct {
// The ID of the enterprise on which to set the members can view dependency insights setting. (Required.)
EnterpriseID ID `json:"enterpriseId"`
// The value for the members can view dependency insights setting on the enterprise. (Required.)
SettingValue EnterpriseEnabledDisabledSettingValue `json:"settingValue"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UpdateEnterpriseOrganizationProjectsSettingInput is an autogenerated input type of UpdateEnterpriseOrganizationProjectsSetting.
type UpdateEnterpriseOrganizationProjectsSettingInput struct {
// The ID of the enterprise on which to set the organization projects setting. (Required.)
EnterpriseID ID `json:"enterpriseId"`
// The value for the organization projects setting on the enterprise. (Required.)
SettingValue EnterpriseEnabledDisabledSettingValue `json:"settingValue"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UpdateEnterpriseOwnerOrganizationRoleInput is an autogenerated input type of UpdateEnterpriseOwnerOrganizationRole.
type UpdateEnterpriseOwnerOrganizationRoleInput struct {
// The ID of the Enterprise which the owner belongs to. (Required.)
EnterpriseID ID `json:"enterpriseId"`
// The ID of the organization for membership change. (Required.)
OrganizationID ID `json:"organizationId"`
// The role to assume in the organization. (Required.)
OrganizationRole RoleInOrganization `json:"organizationRole"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UpdateEnterpriseProfileInput is an autogenerated input type of UpdateEnterpriseProfile.
type UpdateEnterpriseProfileInput struct {
// The Enterprise ID to update. (Required.)
EnterpriseID ID `json:"enterpriseId"`
// The name of the enterprise. (Optional.)
Name *String `json:"name,omitempty"`
// The description of the enterprise. (Optional.)
Description *String `json:"description,omitempty"`
// The URL of the enterprise's website. (Optional.)
WebsiteURL *String `json:"websiteUrl,omitempty"`
// The location of the enterprise. (Optional.)
Location *String `json:"location,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UpdateEnterpriseRepositoryProjectsSettingInput is an autogenerated input type of UpdateEnterpriseRepositoryProjectsSetting.
type UpdateEnterpriseRepositoryProjectsSettingInput struct {
// The ID of the enterprise on which to set the repository projects setting. (Required.)
EnterpriseID ID `json:"enterpriseId"`
// The value for the repository projects setting on the enterprise. (Required.)
SettingValue EnterpriseEnabledDisabledSettingValue `json:"settingValue"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UpdateEnterpriseTeamDiscussionsSettingInput is an autogenerated input type of UpdateEnterpriseTeamDiscussionsSetting.
type UpdateEnterpriseTeamDiscussionsSettingInput struct {
// The ID of the enterprise on which to set the team discussions setting. (Required.)
EnterpriseID ID `json:"enterpriseId"`
// The value for the team discussions setting on the enterprise. (Required.)
SettingValue EnterpriseEnabledDisabledSettingValue `json:"settingValue"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput is an autogenerated input type of UpdateEnterpriseTwoFactorAuthenticationRequiredSetting.
type UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput struct {
// The ID of the enterprise on which to set the two factor authentication required setting. (Required.)
EnterpriseID ID `json:"enterpriseId"`
// The value for the two factor authentication required setting on the enterprise. (Required.)
SettingValue EnterpriseEnabledSettingValue `json:"settingValue"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UpdateEnvironmentInput is an autogenerated input type of UpdateEnvironment.
type UpdateEnvironmentInput struct {
// The node ID of the environment. (Required.)
EnvironmentID ID `json:"environmentId"`
// The wait timer in minutes. (Optional.)
WaitTimer *Int `json:"waitTimer,omitempty"`
// The ids of users or teams that can approve deployments to this environment. (Optional.)
Reviewers *[]ID `json:"reviewers,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UpdateIpAllowListEnabledSettingInput is an autogenerated input type of UpdateIpAllowListEnabledSetting.
type UpdateIpAllowListEnabledSettingInput struct {
// The ID of the owner on which to set the IP allow list enabled setting. (Required.)
OwnerID ID `json:"ownerId"`
// The value for the IP allow list enabled setting. (Required.)
SettingValue IpAllowListEnabledSettingValue `json:"settingValue"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UpdateIpAllowListEntryInput is an autogenerated input type of UpdateIpAllowListEntry.
type UpdateIpAllowListEntryInput struct {
// The ID of the IP allow list entry to update. (Required.)
IPAllowListEntryID ID `json:"ipAllowListEntryId"`
// An IP address or range of addresses in CIDR notation. (Required.)
AllowListValue String `json:"allowListValue"`
// Whether the IP allow list entry is active when an IP allow list is enabled. (Required.)
IsActive Boolean `json:"isActive"`
// An optional name for the IP allow list entry. (Optional.)
Name *String `json:"name,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UpdateIpAllowListForInstalledAppsEnabledSettingInput is an autogenerated input type of UpdateIpAllowListForInstalledAppsEnabledSetting.
type UpdateIpAllowListForInstalledAppsEnabledSettingInput struct {
// The ID of the owner. (Required.)
OwnerID ID `json:"ownerId"`
// The value for the IP allow list configuration for installed GitHub Apps setting. (Required.)
SettingValue IpAllowListForInstalledAppsEnabledSettingValue `json:"settingValue"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UpdateIssueCommentInput is an autogenerated input type of UpdateIssueComment.
type UpdateIssueCommentInput struct {
// The ID of the IssueComment to modify. (Required.)
ID ID `json:"id"`
// The updated text of the comment. (Required.)
Body String `json:"body"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UpdateIssueInput is an autogenerated input type of UpdateIssue.
type UpdateIssueInput struct {
// The ID of the Issue to modify. (Required.)
ID ID `json:"id"`
// The title for the issue. (Optional.)
Title *String `json:"title,omitempty"`
// The body for the issue description. (Optional.)
Body *String `json:"body,omitempty"`
// An array of Node IDs of users for this issue. (Optional.)
AssigneeIDs *[]ID `json:"assigneeIds,omitempty"`
// The Node ID of the milestone for this issue. (Optional.)
MilestoneID *ID `json:"milestoneId,omitempty"`
// An array of Node IDs of labels for this issue. (Optional.)
LabelIDs *[]ID `json:"labelIds,omitempty"`
// The desired issue state. (Optional.)
State *IssueState `json:"state,omitempty"`
// An array of Node IDs for projects associated with this issue. (Optional.)
ProjectIDs *[]ID `json:"projectIds,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UpdateNotificationRestrictionSettingInput is an autogenerated input type of UpdateNotificationRestrictionSetting.
type UpdateNotificationRestrictionSettingInput struct {
// The ID of the owner on which to set the restrict notifications setting. (Required.)
OwnerID ID `json:"ownerId"`
// The value for the restrict notifications setting. (Required.)
SettingValue NotificationRestrictionSettingValue `json:"settingValue"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UpdateOrganizationAllowPrivateRepositoryForkingSettingInput is an autogenerated input type of UpdateOrganizationAllowPrivateRepositoryForkingSetting.
type UpdateOrganizationAllowPrivateRepositoryForkingSettingInput struct {
// The ID of the organization on which to set the allow private repository forking setting. (Required.)
OrganizationID ID `json:"organizationId"`
// Enable forking of private repositories in the organization?. (Required.)
ForkingEnabled Boolean `json:"forkingEnabled"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UpdateProjectCardInput is an autogenerated input type of UpdateProjectCard.
type UpdateProjectCardInput struct {
// The ProjectCard ID to update. (Required.)
ProjectCardID ID `json:"projectCardId"`
// Whether or not the ProjectCard should be archived. (Optional.)
IsArchived *Boolean `json:"isArchived,omitempty"`
// The note of ProjectCard. (Optional.)
Note *String `json:"note,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UpdateProjectColumnInput is an autogenerated input type of UpdateProjectColumn.
type UpdateProjectColumnInput struct {
// The ProjectColumn ID to update. (Required.)
ProjectColumnID ID `json:"projectColumnId"`
// The name of project column. (Required.)
Name String `json:"name"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UpdateProjectDraftIssueInput is an autogenerated input type of UpdateProjectDraftIssue.
type UpdateProjectDraftIssueInput struct {
// The ID of the draft issue to update. (Required.)
DraftIssueID ID `json:"draftIssueId"`
// The title of the draft issue. (Optional.)
Title *String `json:"title,omitempty"`
// The body of the draft issue. (Optional.)
Body *String `json:"body,omitempty"`
// The IDs of the assignees of the draft issue. (Optional.)
AssigneeIDs *[]ID `json:"assigneeIds,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UpdateProjectInput is an autogenerated input type of UpdateProject.
type UpdateProjectInput struct {
// The Project ID to update. (Required.)
ProjectID ID `json:"projectId"`
// The name of project. (Optional.)
Name *String `json:"name,omitempty"`
// The description of project. (Optional.)
Body *String `json:"body,omitempty"`
// Whether the project is open or closed. (Optional.)
State *ProjectState `json:"state,omitempty"`
// Whether the project is public or not. (Optional.)
Public *Boolean `json:"public,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UpdateProjectNextInput is an autogenerated input type of UpdateProjectNext.
type UpdateProjectNextInput struct {
// The ID of the Project to update. (Required.)
ProjectID ID `json:"projectId"`
// Set the title of the project. (Optional.)
Title *String `json:"title,omitempty"`
// Set the readme description of the project. (Optional.)
Description *String `json:"description,omitempty"`
// Set the short description of the project. (Optional.)
ShortDescription *String `json:"shortDescription,omitempty"`
// Set the project to closed or open. (Optional.)
Closed *Boolean `json:"closed,omitempty"`
// Set the project to public or private. (Optional.)
Public *Boolean `json:"public,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UpdateProjectNextItemFieldInput is an autogenerated input type of UpdateProjectNextItemField.
type UpdateProjectNextItemFieldInput struct {
// The ID of the Project. (Required.)
ProjectID ID `json:"projectId"`
// The id of the item to be updated. (Required.)
ItemID ID `json:"itemId"`
// The value which will be set on the field. (Required.)
Value String `json:"value"`
// The id of the field to be updated. (Optional.)
FieldID *ID `json:"fieldId,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UpdatePullRequestBranchInput is an autogenerated input type of UpdatePullRequestBranch.
type UpdatePullRequestBranchInput struct {
// The Node ID of the pull request. (Required.)
PullRequestID ID `json:"pullRequestId"`
// The head ref oid for the upstream branch. (Optional.)
ExpectedHeadOid *GitObjectID `json:"expectedHeadOid,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UpdatePullRequestInput is an autogenerated input type of UpdatePullRequest.
type UpdatePullRequestInput struct {
// The Node ID of the pull request. (Required.)
PullRequestID ID `json:"pullRequestId"`
// The name of the branch you want your changes pulled into. This should be an existing branch on the current repository. (Optional.)
BaseRefName *String `json:"baseRefName,omitempty"`
// The title of the pull request. (Optional.)
Title *String `json:"title,omitempty"`
// The contents of the pull request. (Optional.)
Body *String `json:"body,omitempty"`
// The target state of the pull request. (Optional.)
State *PullRequestUpdateState `json:"state,omitempty"`
// Indicates whether maintainers can modify the pull request. (Optional.)
MaintainerCanModify *Boolean `json:"maintainerCanModify,omitempty"`
// An array of Node IDs of users for this pull request. (Optional.)
AssigneeIDs *[]ID `json:"assigneeIds,omitempty"`
// The Node ID of the milestone for this pull request. (Optional.)
MilestoneID *ID `json:"milestoneId,omitempty"`
// An array of Node IDs of labels for this pull request. (Optional.)
LabelIDs *[]ID `json:"labelIds,omitempty"`
// An array of Node IDs for projects associated with this pull request. (Optional.)
ProjectIDs *[]ID `json:"projectIds,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UpdatePullRequestReviewCommentInput is an autogenerated input type of UpdatePullRequestReviewComment.
type UpdatePullRequestReviewCommentInput struct {
// The Node ID of the comment to modify. (Required.)
PullRequestReviewCommentID ID `json:"pullRequestReviewCommentId"`
// The text of the comment. (Required.)
Body String `json:"body"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UpdatePullRequestReviewInput is an autogenerated input type of UpdatePullRequestReview.
type UpdatePullRequestReviewInput struct {
// The Node ID of the pull request review to modify. (Required.)
PullRequestReviewID ID `json:"pullRequestReviewId"`
// The contents of the pull request review body. (Required.)
Body String `json:"body"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UpdateRefInput is an autogenerated input type of UpdateRef.
type UpdateRefInput struct {
// The Node ID of the Ref to be updated. (Required.)
RefID ID `json:"refId"`
// The GitObjectID that the Ref shall be updated to target. (Required.)
Oid GitObjectID `json:"oid"`
// Permit updates of branch Refs that are not fast-forwards?. (Optional.)
Force *Boolean `json:"force,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UpdateRepositoryInput is an autogenerated input type of UpdateRepository.
type UpdateRepositoryInput struct {
// The ID of the repository to update. (Required.)
RepositoryID ID `json:"repositoryId"`
// The new name of the repository. (Optional.)
Name *String `json:"name,omitempty"`
// A new description for the repository. Pass an empty string to erase the existing description. (Optional.)
Description *String `json:"description,omitempty"`
// Whether this repository should be marked as a template such that anyone who can access it can create new repositories with the same files and directory structure. (Optional.)
Template *Boolean `json:"template,omitempty"`
// The URL for a web page about this repository. Pass an empty string to erase the existing URL. (Optional.)
HomepageURL *URI `json:"homepageUrl,omitempty"`
// Indicates if the repository should have the wiki feature enabled. (Optional.)
HasWikiEnabled *Boolean `json:"hasWikiEnabled,omitempty"`
// Indicates if the repository should have the issues feature enabled. (Optional.)
HasIssuesEnabled *Boolean `json:"hasIssuesEnabled,omitempty"`
// Indicates if the repository should have the project boards feature enabled. (Optional.)
HasProjectsEnabled *Boolean `json:"hasProjectsEnabled,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UpdateSponsorshipPreferencesInput is an autogenerated input type of UpdateSponsorshipPreferences.
type UpdateSponsorshipPreferencesInput struct {
// The ID of the user or organization who is acting as the sponsor, paying for the sponsorship. Required if sponsorLogin is not given. (Optional.)
SponsorID *ID `json:"sponsorId,omitempty"`
// The username of the user or organization who is acting as the sponsor, paying for the sponsorship. Required if sponsorId is not given. (Optional.)
SponsorLogin *String `json:"sponsorLogin,omitempty"`
// The ID of the user or organization who is receiving the sponsorship. Required if sponsorableLogin is not given. (Optional.)
SponsorableID *ID `json:"sponsorableId,omitempty"`
// The username of the user or organization who is receiving the sponsorship. Required if sponsorableId is not given. (Optional.)
SponsorableLogin *String `json:"sponsorableLogin,omitempty"`
// Whether the sponsor should receive email updates from the sponsorable. (Optional.)
ReceiveEmails *Boolean `json:"receiveEmails,omitempty"`
// Specify whether others should be able to see that the sponsor is sponsoring the sponsorable. Public visibility still does not reveal which tier is used. (Optional.)
PrivacyLevel *SponsorshipPrivacy `json:"privacyLevel,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UpdateSubscriptionInput is an autogenerated input type of UpdateSubscription.
type UpdateSubscriptionInput struct {
// The Node ID of the subscribable object to modify. (Required.)
SubscribableID ID `json:"subscribableId"`
// The new state of the subscription. (Required.)
State SubscriptionState `json:"state"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UpdateTeamDiscussionCommentInput is an autogenerated input type of UpdateTeamDiscussionComment.
type UpdateTeamDiscussionCommentInput struct {
// The ID of the comment to modify. (Required.)
ID ID `json:"id"`
// The updated text of the comment. (Required.)
Body String `json:"body"`
// The current version of the body content. (Optional.)
BodyVersion *String `json:"bodyVersion,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UpdateTeamDiscussionInput is an autogenerated input type of UpdateTeamDiscussion.
type UpdateTeamDiscussionInput struct {
// The Node ID of the discussion to modify. (Required.)
ID ID `json:"id"`
// The updated title of the discussion. (Optional.)
Title *String `json:"title,omitempty"`
// The updated text of the discussion. (Optional.)
Body *String `json:"body,omitempty"`
// The current version of the body content. If provided, this update operation will be rejected if the given version does not match the latest version on the server. (Optional.)
BodyVersion *String `json:"bodyVersion,omitempty"`
// If provided, sets the pinned state of the updated discussion. (Optional.)
Pinned *Boolean `json:"pinned,omitempty"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UpdateTeamsRepositoryInput is an autogenerated input type of UpdateTeamsRepository.
type UpdateTeamsRepositoryInput struct {
// Repository ID being granted access to. (Required.)
RepositoryID ID `json:"repositoryId"`
// A list of teams being granted access. Limit: 10. (Required.)
TeamIDs []ID `json:"teamIds"`
// Permission that should be granted to the teams. (Required.)
Permission RepositoryPermission `json:"permission"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UpdateTopicsInput is an autogenerated input type of UpdateTopics.
type UpdateTopicsInput struct {
// The Node ID of the repository. (Required.)
RepositoryID ID `json:"repositoryId"`
// An array of topic names. (Required.)
TopicNames []String `json:"topicNames"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
// UserStatusOrder represents ordering options for user status connections.
type UserStatusOrder struct {
// The field to order user statuses by. (Required.)
Field UserStatusOrderField `json:"field"`
// The ordering direction. (Required.)
Direction OrderDirection `json:"direction"`
}
// VerifiableDomainOrder represents ordering options for verifiable domain connections.
type VerifiableDomainOrder struct {
// The field to order verifiable domains by. (Required.)
Field VerifiableDomainOrderField `json:"field"`
// The ordering direction. (Required.)
Direction OrderDirection `json:"direction"`
}
// VerifyVerifiableDomainInput is an autogenerated input type of VerifyVerifiableDomain.
type VerifyVerifiableDomainInput struct {
// The ID of the verifiable domain to verify. (Required.)
ID ID `json:"id"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}
|