2

I'm using OrientDB studio for creating vertices from a certain type (NodeType1). I created 29 vertices by using OrientDB studio and when I run:

select count(*) from NodeType1

I get 29 records.

However, when I run:

select * from NodeType1

I get a list of only 20 records.

Has anyone encountered this before?

Shoham Ben-Har
  • 317
  • 1
  • 4
  • 16

1 Answers1

8

You see only 20 records because OrientDB shows 20 by default. If you want to see more, you can write:

select * from nodetype1 limit -1

This way, you can see all your records.

Here is where you can set the number of visible records for your query:

Pang
  • 9,564
  • 146
  • 81
  • 122
Albe86
  • 131
  • 4