lab icon indicating copy to clipboard operation
lab copied to clipboard

project list --all command option does not return all the projects anymore

Open soullivaneuh opened this issue 3 years ago • 2 comments

Since version 0.25.0, the --all option of the project list command it not working as expected.

# Expected result, working with 0.24.0
❯ LAB_CORE_HOST="https://gitlab.com" LAB_CORE_TOKEN=${GITLAB_TOKEN} ./lab-0.24.0 project list --member --all | wc -l 
280
# Current result
❯ LAB_CORE_HOST="https://gitlab.com" LAB_CORE_TOKEN=${GITLAB_TOKEN} ./lab-0.25.0 project list --member --all | wc -l
100

soullivaneuh avatar Aug 25 '22 09:08 soullivaneuh

--number and -n has the same problem:

Expected result, working wit lab version 0.25.1

lab project list -ma --number "20" | wc -l 20

Current result

lab project list -ma --number "20" | wc -l 100

Expected result, working wit lab version 0.25.1

lab project list -ma --number "200" | wc -l 200

Current result

lab project list -ma --number "200" | wc -l 100

Expected result, working wit lab version 0.25.1

lab project list -m -a -n 20 | wc -l 20

Current result

lab project list -m -a -n 20 | wc -l 100

Expected result, working wit lab version 0.25.1

lab project list -m -a -n 200 | wc -l 200

Current result

lab project list -m -a -n 200 | wc -l 100

henrikstroem avatar Nov 04 '22 09:11 henrikstroem