Nothing
Code
gl_files_query
Output
[1] "query GetFilesByOrg($org: ID!, $file_paths: [String!]!) {\n group(fullPath: $org) {\n projects(first: 100) {\n count\n pageInfo {\n hasNextPage\n endCursor\n }\n edges {\n node {\n name\n id\n webUrl\n repository {\n blobs(paths: $file_paths) {\n nodes {\n path\n rawBlob\n size\n }\n }\n }\n }\n }\n }\n }\n }"
Code
gl_file_blobs_from_repo_query
Output
[1] "\n query GetFilesByRepo($fullPath: ID!, $file_paths: [String!]!) {\n project(fullPath: $fullPath) {\n name\n id\n webUrl\n repository {\n blobs(paths: $file_paths) {\n nodes {\n path\n rawBlob\n size\n }\n }\n }\n }\n }\n "
Code
files_from_org_per_repo <- test_graphql_gitlab$get_files_from_org_per_repo(org = "mbtests",
owner_type = "organization", repos = "gitstatstesting", file_paths = c(
"project_metadata.yaml", "README.md"), host_files_structure = NULL,
verbose = TRUE, progress = FALSE)
Message
> Encountered query complexity error (too many files). I will divide input data into chunks...
Code
files_content <- gitlab_testhost_priv$get_files_content_from_files_structure(
files_structure = test_mocker$use("gl_files_structure_from_orgs"))
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.