Neo4j autocomplete test
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
eo4j-sh (0)$ start a=node:cbm_pc_quantrev_0706_i_n_GEXP('label:TP53') return id(a); | |
==> +-------+ | |
==> | id(a) | | |
==> +-------+ | |
==> | 48228 | | |
==> +-------+ | |
==> 1 row | |
==> 249 ms | |
==> | |
neo4j-sh (0)$ start a=node:cbm_pc_quantrev_0706_i_n_GEXP('label:T*') return count(a); | |
==> +----------+ | |
==> | count(a) | | |
==> +----------+ | |
==> | 1449 | | |
==> +----------+ | |
==> 1 row | |
==> 581 ms | |
==> | |
neo4j-sh (0)$ start a=node:cbm_pc_quantrev_0706_i_n_GEXP('label:TP*') return count(a); | |
==> +----------+ | |
==> | count(a) | | |
==> +----------+ | |
==> | 55 | | |
==> +----------+ | |
==> 1 row | |
==> 6 ms | |
==> | |
neo4j-sh (0)$ start a=node:cbm_pc_quantrev_0706_i_n_GEXP('label:TP5') return count(a); | |
==> +----------+ | |
==> | count(a) | | |
==> +----------+ | |
==> | 0 | | |
==> +----------+ | |
==> 1 row | |
==> 3 ms | |
==> | |
neo4j-sh (0)$ start a=node:cbm_pc_quantrev_0706_i_n_GEXP('label:TP5*') return count(a); | |
==> +----------+ | |
==> | count(a) | | |
==> +----------+ | |
==> | 14 | | |
==> +----------+ | |
==> 1 row | |
==> 11 ms |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment