llooFlashooll opened a new issue, #2078:
URL: https://github.com/apache/incubator-hugegraph/issues/2078

   ### Bug Type (问题类型)
   
   gremlin (结果不合预期)
   
   ### Before submit
   
   - [X] 我已经确认现有的 [Issues](https://github.com/hugegraph/hugegraph/issues) 与 
[FAQ](https://hugegraph.github.io/hugegraph-doc/guides/faq.html) 中没有相同 / 重复问题
   
   ### Environment (环境信息)
   
   - Server Version: v0.12.0
   - Backend: memory
   - OS: 2.6 GHz 6-Core Intel Core i7, 32 GB, macOS 13.1
   - Data Size: 100 vertices, 100 edges
   
   ### Expected & Actual behavior (期望与实际表现)
   
   - Expected Behavior:
     
     We construct the following scenario: expression & (!expression) = 0. We 
build the graph randomly with 100 vertexes, 200 edges, 20 vertex labels, and 20 
edge labels.
     Here is one of our bug examples executed.
     1) `g.V().hasLabel('vl0').size()`
     2) `g.V().not(hasLabel('vl0')).and(hasLabel('vl0')).size()` return 28 != 
0. In this graph, we should know that there're more result inconsistency than 
the example I presented above. For example, the node filter operation can be 
complicated, or we can also count the edges size with random filter like 
`g.E().not(hasNot('ep4')).and(hasNot('ep4')).size()`. Specially, we conducted 
differential testing on other graph databases such as JanusGraph and TinkerPop, 
and they output the correct results that query2 outputs 0.
   
   - Steps to Reproduce:
   * Create schema
   ``` gremlin
   schema().propertyKey(vp0).asInt().ifNotExist().create();
   schema().propertyKey(vp1).asInt().ifNotExist().create();
   schema().propertyKey(vp2).asText().ifNotExist().create();
   schema().vertexLabel(vl0).ifNotExist().create();
   schema().vertexLabel(vl0).properties(vp0).nullableKeys(vp0).append();
   
schema().indexLabel(vl0byvp0Shard).onV(vl0).by(vp0).shard().ifNotExist().create();
   schema().vertexLabel(vl0).properties(vp2).nullableKeys(vp2).append();
   
schema().indexLabel(vl0byvp2Shard).onV(vl0).by(vp2).shard().ifNotExist().create();
   schema().vertexLabel(vl1).ifNotExist().create();
   schema().vertexLabel(vl1).properties(vp2).nullableKeys(vp2).append();
   
schema().indexLabel(vl1byvp2Shard).onV(vl1).by(vp2).shard().ifNotExist().create();
   schema().vertexLabel(vl1).properties(vp1).nullableKeys(vp1).append();
   
schema().indexLabel(vl1byvp1Shard).onV(vl1).by(vp1).shard().ifNotExist().create();
   schema().vertexLabel(vl2).ifNotExist().create();
   schema().vertexLabel(vl2).properties(vp1).nullableKeys(vp1).append();
   
schema().indexLabel(vl2byvp1Shard).onV(vl2).by(vp1).shard().ifNotExist().create();
   schema().vertexLabel(vl2).properties(vp0).nullableKeys(vp0).append();
   
schema().indexLabel(vl2byvp0Shard).onV(vl2).by(vp0).shard().ifNotExist().create();
   schema().vertexLabel(vl3).ifNotExist().create();
   schema().vertexLabel(vl3).properties(vp0).nullableKeys(vp0).append();
   
schema().indexLabel(vl3byvp0Shard).onV(vl3).by(vp0).shard().ifNotExist().create();
   schema().vertexLabel(vl3).properties(vp2).nullableKeys(vp2).append();
   
schema().indexLabel(vl3byvp2Shard).onV(vl3).by(vp2).shard().ifNotExist().create();
   schema().vertexLabel(vl3).properties(vp1).nullableKeys(vp1).append();
   
schema().indexLabel(vl3byvp1Shard).onV(vl3).by(vp1).shard().ifNotExist().create();
   schema().propertyKey(ep0).asInt().ifNotExist().create();
   schema().propertyKey(ep1).asText().ifNotExist().create();
   schema().propertyKey(ep2).asBoolean().ifNotExist().create();
   schema().propertyKey(ep3).asDouble().ifNotExist().create();
   schema().propertyKey(ep4).asFloat().ifNotExist().create();
   schema().propertyKey(ep5).asText().ifNotExist().create();
   schema().propertyKey(ep6).asDouble().ifNotExist().create();
   schema().edgeLabel(el0).link(vl2, vl2).ifNotExist().create();
   schema().edgeLabel(el0).properties(ep1).nullableKeys(ep1).append();
   
schema().indexLabel(el0byep1Shard).onE(el0).by(ep1).shard().ifNotExist().create();
   schema().edgeLabel(el0).properties(ep5).nullableKeys(ep5).append();
   
schema().indexLabel(el0byep5Shard).onE(el0).by(ep5).shard().ifNotExist().create();
   schema().edgeLabel(el1).link(vl3, vl0).ifNotExist().create();
   schema().edgeLabel(el1).properties(ep5).nullableKeys(ep5).append();
   
schema().indexLabel(el1byep5Shard).onE(el1).by(ep5).shard().ifNotExist().create();
   schema().edgeLabel(el2).link(vl0, vl2).ifNotExist().create();
   schema().edgeLabel(el2).properties(ep5).nullableKeys(ep5).append();
   
schema().indexLabel(el2byep5Shard).onE(el2).by(ep5).shard().ifNotExist().create();
   schema().edgeLabel(el2).properties(ep4).nullableKeys(ep4).append();
   
schema().indexLabel(el2byep4Shard).onE(el2).by(ep4).shard().ifNotExist().create();
   schema().edgeLabel(el2).properties(ep3).nullableKeys(ep3).append();
   
schema().indexLabel(el2byep3Shard).onE(el2).by(ep3).shard().ifNotExist().create();
   schema().edgeLabel(el3).link(vl2, vl0).ifNotExist().create();
   schema().edgeLabel(el3).properties(ep1).nullableKeys(ep1).append();
   
schema().indexLabel(el3byep1Shard).onE(el3).by(ep1).shard().ifNotExist().create();
   schema().edgeLabel(el3).properties(ep6).nullableKeys(ep6).append();
   
schema().indexLabel(el3byep6Shard).onE(el3).by(ep6).shard().ifNotExist().create();
   schema().edgeLabel(el3).properties(ep2).nullableKeys(ep2).append();
   
schema().indexLabel(el3byep2Shard).onE(el3).by(ep2).shard().ifNotExist().create();
   schema().edgeLabel(el3).properties(ep0).nullableKeys(ep0).append();
   
schema().indexLabel(el3byep0Shard).onE(el3).by(ep0).shard().ifNotExist().create();
   schema().edgeLabel(el4).link(vl3, vl2).ifNotExist().create();
   schema().edgeLabel(el4).properties(ep2).nullableKeys(ep2).append();
   
schema().indexLabel(el4byep2Shard).onE(el4).by(ep2).shard().ifNotExist().create();
   schema().edgeLabel(el4).properties(ep4).nullableKeys(ep4).append();
   
schema().indexLabel(el4byep4Shard).onE(el4).by(ep4).shard().ifNotExist().create();
   schema().edgeLabel(el4).properties(ep5).nullableKeys(ep5).append();
   
schema().indexLabel(el4byep5Shard).onE(el4).by(ep5).shard().ifNotExist().create();
   schema().edgeLabel(el4).properties(ep0).nullableKeys(ep0).append();
   
schema().indexLabel(el4byep0Shard).onE(el4).by(ep0).shard().ifNotExist().create();
   schema().edgeLabel(el4).properties(ep1).nullableKeys(ep1).append();
   
schema().indexLabel(el4byep1Shard).onE(el4).by(ep1).shard().ifNotExist().create();
   ```
   1. Create data
   ``` gremlin
   # Add 100 Vertices:
   
g.addV('vl1').property('vp1','-1355351376').property('vp2',''y!?d('').property(T.id,'676951790859583488')
   
g.addV('vl0').property('vp0','-793900726').property('vp2',''-1355351376'').property(T.id,'676951790897332224')
   g.addV('vl1').property('vp1','550234490').property(T.id,'676951790914109440')
   
g.addV('vl3').property('vp1','751145326').property('vp0','-1355351376').property('vp2',''dzx4M'').property(T.id,'676951790930886656')
   
g.addV('vl3').property('vp1','550234490').property('vp0','-1254428227').property('vp2',''댳kM[t'').property(T.id,'676951790951858176')
   
g.addV('vl2').property('vp0','-334142946').property(T.id,'676951790968635392')
   g.addV('vl0').property('vp2',''0.0'').property(T.id,'676951790981218304')
   
g.addV('vl3').property('vp1','751145326').property('vp0','-334142946').property('vp2',''K/o0n'').property(T.id,'676951790997995520')
   
g.addV('vl2').property('vp0','-1370584161').property(T.id,'676951791023161344')
   
g.addV('vl2').property('vp1','-1355351376').property('vp0','-1300171345').property(T.id,'676951791039938560')
   
g.addV('vl3').property('vp1','210342777').property('vp0','198734875').property(T.id,'676951791056715776')
   g.addV('vl0').property('vp0','751145326').property(T.id,'676951791069298688')
   
g.addV('vl1').property('vp2',''550234490'').property(T.id,'676951791086075904')
   g.addV('vl2').property('vp0','550234490').property(T.id,'676951791102853120')
   g.addV('vl0').property('vp2',''{v픖#z'').property(T.id,'676951791115436032')
   
g.addV('vl2').property('vp0','-1783695740').property(T.id,'676951791132213248')
   g.addV('vl1').property('vp1','-1370584161').property('vp2',''+v%!    
'').property(T.id,'676951791148990464')
   
g.addV('vl2').property('vp1','-1254428227').property('vp0','-1680529892').property(T.id,'676951791165767680')
   g.addV('vl0').property('vp2',''_R琛Mr'').property(T.id,'676951791178350592')
   
g.addV('vl2').property('vp0','-1354839751').property(T.id,'676951791195127808')
   
g.addV('vl2').property('vp1','-1733364180').property('vp0','-1354839751').property(T.id,'676951791207710720')
   
g.addV('vl1').property('vp1','550234490').property('vp2',''G?gN,'').property(T.id,'676951791220293632')
   
g.addV('vl1').property('vp1','-112960774').property('vp2',''G鍹d9A'').property(T.id,'676951791237070848')
   
g.addV('vl0').property('vp0','-1685299519').property('vp2',''P<|2s'').property(T.id,'676951791253848064')
   
g.addV('vl0').property('vp0','-1767198131').property('vp2',''㐚mbW?'').property(T.id,'676951791270625280')
   g.addV('vl0').property('vp2',''{輢D%h'').property(T.id,'676951791283208192')
   
g.addV('vl1').property('vp1','1843057507').property('vp2',''7_Ol3'').property(T.id,'676951791299985408')
   
g.addV('vl3').property('vp1','1969764390').property(T.id,'676951791312568320')
   
g.addV('vl1').property('vp1','603487249').property('vp2',''{v픖#z'').property(T.id,'676951791329345536')
   
g.addV('vl0').property('vp0','-1680529892').property(T.id,'676951791346122752')
   
g.addV('vl1').property('vp1','1843057507').property('vp2',''614839091'').property(T.id,'676951791358705664')
   g.addV('vl0').property('vp0','282505389').property(T.id,'676951791375482880')
   g.addV('vl0').property('vp0','198734875').property(T.id,'676951791392260096')
   
g.addV('vl2').property('vp1','1836010482').property('vp0','-1354839751').property(T.id,'676951791409037312')
   
g.addV('vl2').property('vp0','-1254428227').property(T.id,'676951791425814528')
   
g.addV('vl0').property('vp0','198734875').property('vp2',''QBZ-^'').property(T.id,'676951791442591744')
   g.addV('vl1').property('vp1','622290489').property(T.id,'676951791455174656')
   g.addV('vl1').property('vp2',''Z[wfv'').property(T.id,'676951791467757568')
   
g.addV('vl3').property('vp1','115186463').property('vp0','293551900').property(T.id,'676951791484534784')
   
g.addV('vl1').property('vp1','1146330526').property('vp2',''603487249'').property(T.id,'676951791497117696')
   g.addV('vl3').property('vp2',''P<|2s'').property(T.id,'676951791513894912')
   
g.addV('vl0').property('vp0','1919707185').property('vp2',''Z[wfv'').property(T.id,'676951791526477824')
   
g.addV('vl3').property('vp0','-1589819611').property('vp2',''xtlL)'').property(T.id,'676951791539060736')
   g.addV('vl1').property('vp2',''
   #*T'').property(T.id,'676951791555837952')
   
g.addV('vl1').property('vp1','750928148').property('vp2',''7_Ol3'').property(T.id,'676951791572615168')
   
g.addV('vl1').property('vp1','-825648539').property('vp2',''-1355351376'').property(T.id,'676951791589392384')
   
g.addV('vl2').property('vp1','517463078').property('vp0','-243459188').property(T.id,'676951791601975296')
   
g.addV('vl0').property('vp0','-1186050334').property('vp2',''퍣Ccr'').property(T.id,'676951791618752512')
   
g.addV('vl2').property('vp0','1850837247').property(T.id,'676951791631335424')
   
g.addV('vl1').property('vp1','1513517245').property('vp2','',Pa5<'').property(T.id,'676951791652306944')
   
g.addV('vl1').property('vp1','-80796541').property('vp2',''HG?3U'').property(T.id,'676951791664889856')
   
g.addV('vl2').property('vp0','1131325317').property(T.id,'676951791681667072')
   
g.addV('vl2').property('vp1','1539086422').property('vp0','-897828409').property(T.id,'676951791694249984')
   g.addV('vl1').property('vp2',''㐚PEi\'').property(T.id,'676951791711027200')
   g.addV('vl1').property('vp2',''dzx4M'').property(T.id,'676951791727804416')
   
g.addV('vl2').property('vp1','-374365323').property('vp0','-1294816040').property(T.id,'676951791740387328')
   
g.addV('vl3').property('vp0','-2120281972').property('vp2',''19fk䲎'').property(T.id,'676951791757164544')
   
g.addV('vl3').property('vp1','1836010482').property('vp0','-1').property(T.id,'676951791773941760')
   
g.addV('vl0').property('vp0','210342777').property('vp2',''u곘0hl'').property(T.id,'676951791790718976')
   
g.addV('vl2').property('vp1','-2028199485').property('vp0','570446598').property(T.id,'676951791807496192')
   
g.addV('vl3').property('vp0','-1767198131').property('vp2',''G?gN,'').property(T.id,'676951791824273408')
   
g.addV('vl3').property('vp1','-1098928697').property('vp0','636607108').property('vp2',''
   #*T'').property(T.id,'676951791841050624')
   
g.addV('vl0').property('vp0','-374365323').property('vp2','',Pa5<'').property(T.id,'676951791857827840')
   g.addV('vl1').property('vp2',''_R琛Mr'').property(T.id,'676951791874605056')
   
g.addV('vl3').property('vp0','-1440119045').property('vp2',''퍣Ccr'').property(T.id,'676951791887187968')
   g.addV('vl1').property('vp2',''G鍹d9A'').property(T.id,'676951791899770880')
   
g.addV('vl3').property('vp1','750928148').property('vp0','133437014').property('vp2',''o*L&a'').property(T.id,'676951791916548096')
   
g.addV('vl0').property('vp0','-1620217735').property(T.id,'676951791929131008')
   
g.addV('vl0').property('vp0','-1659337903').property('vp2',''1850837247'').property(T.id,'676951791941713920')
   
g.addV('vl0').property('vp0','-1767198131').property(T.id,'676951791958491136')
   
g.addV('vl3').property('vp1','1758299343').property('vp0','-2037975233').property(T.id,'676951791971074048')
   g.addV('vl0').property('vp2',''01
   ~''').property(T.id,'676951791983656960')
   
g.addV('vl0').property('vp0','1250020172').property('vp2',''6OuI4'').property(T.id,'676951791996239872')
   g.addV('vl2').property('vp0','581942084').property(T.id,'676951792013017088')
   
g.addV('vl0').property('vp0','1969764390').property('vp2',''1250020172'').property(T.id,'676951792025600000')
   g.addV('vl0').property('vp0','982414597').property(T.id,'676951792042377216')
   
g.addV('vl2').property('vp0','-243459188').property(T.id,'676951792059154432')
   
g.addV('vl1').property('vp1','-1740490507').property(T.id,'676951792071737344')
   
g.addV('vl2').property('vp1','1843057507').property(T.id,'676951792092708864')
   
g.addV('vl3').property('vp1','-944111465').property('vp0','-1720524881').property('vp2',''㐚mbW?'').property(T.id,'676951792105291776')
   
g.addV('vl0').property('vp0','1010993457').property('vp2',''S#}G'').property(T.id,'676951792117874688')
   
g.addV('vl1').property('vp1','-2017423927').property('vp2',''WE酮?<'').property(T.id,'676951792134651904')
   g.addV('vl1').property('vp2',''2N<]l'').property(T.id,'676951792151429120')
   
g.addV('vl1').property('vp1','1515749955').property(T.id,'676951792164012032')
   
g.addV('vl1').property('vp1','-1725736569').property(T.id,'676951792176594944')
   
g.addV('vl1').property('vp1','512248536').property('vp2',''*K拇A.'').property(T.id,'676951792193372160')
   
g.addV('vl1').property('vp1','-374365323').property(T.id,'676951792210149376')
   
g.addV('vl0').property('vp2',''-1720524881'').property(T.id,'676951792226926592')
   
g.addV('vl2').property('vp1','-148462667').property(T.id,'676951792239509504')
   g.addV('vl2').property('vp0','780714647').property(T.id,'676951792256286720')
   
g.addV('vl3').property('vp0','-1725736569').property('vp2',''0.0'').property(T.id,'676951792268869632')
   
g.addV('vl0').property('vp0','-2056448684').property(T.id,'676951792285646848')
   
g.addV('vl2').property('vp1','1558969868').property('vp0','550234490').property(T.id,'676951792298229760')
   g.addV('vl0').property('vp0','-1727140487').property('vp2',''+wjp
   '').property(T.id,'676951792310812672')
   
g.addV('vl3').property('vp0','1474174529').property(T.id,'676951792327589888')
   
g.addV('vl1').property('vp1','435884152').property('vp2',''d&뺓^y'').property(T.id,'676951792340172800')
   g.addV('vl1').property('vp2',''2N<]l'').property(T.id,'676951792352755712')
   
g.addV('vl3').property('vp1','-23646552').property('vp0','570446598').property(T.id,'676951792369532928')
   
g.addV('vl0').property('vp0','1474174529').property(T.id,'676951792382115840')
   
g.addV('vl3').property('vp1','1021026898').property('vp0','-944111465').property('vp2',''ᛕb^7L'').property(T.id,'676951792394698752')
   2. Add 200 Edges:
   g.addE('el0').from('676951791102853120').to('676951791207710720')
   g.addE('el1').from('676951792382115840').to('676951791539060736')
   g.addE('el0').from('676951791102853120').to('676951792239509504')
   g.addE('el1').from('676951792226926592').to('676951790930886656')
   g.addE('el2').from('676951791102853120').to('676951791283208192')
   g.addE('el3').from('676951791115436032').to('676951791195127808')
   g.addE('el4').from('676951791601975296').to('676951791312568320')
   g.addE('el3').from('676951791790718976').to('676951791207710720')
   g.addE('el2').from('676951791023161344').to('676951791857827840')
   g.addE('el2').from('676951791601975296').to('676951791526477824')
   g.addE('el2').from('676951791039938560').to('676951792025600000')
   g.addE('el4').from('676951791102853120').to('676951791971074048')
   g.addE('el1').from('676951791618752512').to('676951791841050624')
   g.addE('el0').from('676951792059154432').to('676951792013017088')
   g.addE('el0').from('676951791102853120').to('676951792059154432')
   g.addE('el2').from('676951791631335424').to('676951791392260096')
   g.addE('el0').from('676951791132213248').to('676951791102853120')
   g.addE('el4').from('676951791807496192').to('676951791824273408')
   g.addE('el3').from('676951791375482880').to('676951790968635392')
   g.addE('el4').from('676951791681667072').to('676951792327589888')
   g.addE('el0').from('676951791425814528').to('676951791807496192')
   g.addE('el3').from('676951791996239872').to('676951792092708864')
   g.addE('el4').from('676951792256286720').to('676951791539060736')
   g.addE('el0').from('676951790968635392').to('676951792092708864')
   g.addE('el4').from('676951791039938560').to('676951791971074048')
   g.addE('el2').from('676951791681667072').to('676951792285646848')
   g.addE('el3').from('676951791283208192').to('676951791023161344')
   g.addE('el0').from('676951790968635392').to('676951790968635392')
   g.addE('el4').from('676951791102853120').to('676951790951858176')
   g.addE('el1').from('676951791115436032').to('676951791312568320')
   g.addE('el3').from('676951792285646848').to('676951792256286720')
   g.addE('el2').from('676951791631335424').to('676951791996239872')
   g.addE('el0').from('676951791425814528').to('676951791102853120')
   g.addE('el1').from('676951792310812672').to('676951792105291776')
   g.addE('el3').from('676951791941713920').to('676951791694249984')
   g.addE('el1').from('676951791346122752').to('676951791824273408')
   g.addE('el2').from('676951792239509504').to('676951791857827840')
   g.addE('el2').from('676951791740387328').to('676951791115436032')
   g.addE('el2').from('676951791102853120').to('676951791069298688')
   g.addE('el1').from('676951791270625280').to('676951791916548096')
   g.addE('el0').from('676951791694249984').to('676951791694249984')
   g.addE('el4').from('676951791601975296').to('676951791887187968')
   g.addE('el1').from('676951791253848064').to('676951792327589888')
   g.addE('el1').from('676951791375482880').to('676951790930886656')
   g.addE('el4').from('676951791740387328').to('676951792394698752')
   g.addE('el3').from('676951791790718976').to('676951792059154432')
   g.addE('el3').from('676951791346122752').to('676951792013017088')
   g.addE('el4').from('676951791631335424').to('676951791056715776')
   g.addE('el2').from('676951791631335424').to('676951792382115840')
   g.addE('el3').from('676951792285646848').to('676951791631335424')
   g.addE('el3').from('676951791790718976').to('676951791425814528')
   g.addE('el1').from('676951791115436032').to('676951792268869632')
   g.addE('el1').from('676951790981218304').to('676951790997995520')
   g.addE('el2').from('676951791631335424').to('676951791270625280')
   g.addE('el3').from('676951792226926592').to('676951792092708864')
   g.addE('el4').from('676951791694249984').to('676951791824273408')
   g.addE('el2').from('676951792256286720').to('676951792025600000')
   g.addE('el2').from('676951791039938560').to('676951791996239872')
   g.addE('el4').from('676951791601975296').to('676951792105291776')
   g.addE('el2').from('676951791681667072').to('676951791178350592')
   g.addE('el3').from('676951791346122752').to('676951792092708864')
   g.addE('el0').from('676951791807496192').to('676951792092708864')
   g.addE('el2').from('676951791195127808').to('676951791253848064')
   g.addE('el2').from('676951791102853120').to('676951791392260096')
   g.addE('el4').from('676951792239509504').to('676951791757164544')
   g.addE('el4').from('676951790968635392').to('676951791513894912')
   g.addE('el2').from('676951791694249984').to('676951790897332224')
   g.addE('el3').from('676951791618752512').to('676951792298229760')
   g.addE('el4').from('676951792256286720').to('676951791757164544')
   g.addE('el0').from('676951792239509504').to('676951791165767680')
   g.addE('el0').from('676951791102853120').to('676951791409037312')
   g.addE('el4').from('676951791102853120').to('676951791539060736')
   g.addE('el1').from('676951791283208192').to('676951791887187968')
   g.addE('el2').from('676951791425814528').to('676951791958491136')
   g.addE('el4').from('676951791195127808').to('676951792394698752')
   g.addE('el4').from('676951792013017088').to('676951791971074048')
   g.addE('el0').from('676951791023161344').to('676951791195127808')
   g.addE('el4').from('676951791681667072').to('676951791539060736')
   g.addE('el2').from('676951791023161344').to('676951791115436032')
   g.addE('el0').from('676951791694249984').to('676951792298229760')
   g.addE('el1').from('676951791983656960').to('676951791841050624')
   g.addE('el3').from('676951792025600000').to('676951792298229760')
   g.addE('el2').from('676951792298229760').to('676951791392260096')
   g.addE('el0').from('676951791195127808').to('676951791195127808')
   g.addE('el0').from('676951791195127808').to('676951791165767680')
   g.addE('el2').from('676951791132213248').to('676951791178350592')
   g.addE('el4').from('676951791807496192').to('676951791757164544')
   g.addE('el3').from('676951791178350592').to('676951791740387328')
   g.addE('el1').from('676951792025600000').to('676951791916548096')
   g.addE('el0').from('676951792298229760').to('676951791631335424')
   g.addE('el0').from('676951791694249984').to('676951791631335424')
   g.addE('el0').from('676951791681667072').to('676951791631335424')
   g.addE('el4').from('676951792239509504').to('676951791841050624')
   g.addE('el3').from('676951791270625280').to('676951791601975296')
   g.addE('el2').from('676951790968635392').to('676951791958491136')
   g.addE('el1').from('676951791178350592').to('676951790951858176')
   g.addE('el3').from('676951791392260096').to('676951791195127808')
   g.addE('el0').from('676951792059154432').to('676951791409037312')
   g.addE('el2').from('676951791132213248').to('676951791958491136')
   g.addE('el2').from('676951792092708864').to('676951790981218304')
   g.addE('el4').from('676951791740387328').to('676951791513894912')
   g.addE('el1').from('676951792042377216').to('676951790951858176')
   g.addE('el2').from('676951792239509504').to('676951791115436032')
   g.addE('el4').from('676951791409037312').to('676951792327589888')
   g.addE('el1').from('676951790897332224').to('676951791757164544')
   g.addE('el2').from('676951791601975296').to('676951791790718976')
   g.addE('el4').from('676951791694249984').to('676951791971074048')
   g.addE('el0').from('676951792256286720').to('676951791102853120')
   g.addE('el3').from('676951791526477824').to('676951791425814528')
   g.addE('el3').from('676951792285646848').to('676951791102853120')
   g.addE('el0').from('676951791132213248').to('676951792059154432')
   g.addE('el1').from('676951791253848064').to('676951791773941760')
   g.addE('el1').from('676951791253848064').to('676951792105291776')
   g.addE('el4').from('676951790968635392').to('676951791824273408')
   g.addE('el0').from('676951792013017088').to('676951792256286720')
   g.addE('el2').from('676951792239509504').to('676951791253848064')
   g.addE('el2').from('676951791207710720').to('676951792025600000')
   g.addE('el0').from('676951791740387328').to('676951792013017088')
   g.addE('el2').from('676951792013017088').to('676951791526477824')
   g.addE('el3').from('676951791790718976').to('676951792013017088')
   g.addE('el4').from('676951791023161344').to('676951792394698752')
   g.addE('el1').from('676951792382115840').to('676951792327589888')
   g.addE('el0').from('676951791195127808').to('676951791102853120')
   g.addE('el0').from('676951792092708864').to('676951792298229760')
   g.addE('el1').from('676951792226926592').to('676951792105291776')
   g.addE('el4').from('676951791425814528').to('676951790951858176')
   g.addE('el3').from('676951792025600000').to('676951791631335424')
   g.addE('el3').from('676951792285646848').to('676951792059154432')
   g.addE('el0').from('676951791694249984').to('676951791195127808')
   g.addE('el1').from('676951792285646848').to('676951791773941760')
   g.addE('el0').from('676951791039938560').to('676951792298229760')
   g.addE('el3').from('676951792285646848').to('676951791039938560')
   g.addE('el3').from('676951791442591744').to('676951790968635392')
   g.addE('el2').from('676951792092708864').to('676951791178350592')
   g.addE('el1').from('676951791069298688').to('676951792327589888')
   g.addE('el3').from('676951791392260096').to('676951791425814528')
   g.addE('el2').from('676951792092708864').to('676951791270625280')
   g.addE('el3').from('676951791253848064').to('676951792256286720')
   g.addE('el3').from('676951791346122752').to('676951791601975296')
   g.addE('el2').from('676951792059154432').to('676951791929131008')
   g.addE('el4').from('676951791207710720').to('676951790951858176')
   g.addE('el1').from('676951791958491136').to('676951792105291776')
   g.addE('el4').from('676951791039938560').to('676951791056715776')
   g.addE('el3').from('676951790897332224').to('676951791132213248')
   g.addE('el1').from('676951791996239872').to('676951790951858176')
   g.addE('el0').from('676951791039938560').to('676951791023161344')
   g.addE('el4').from('676951792059154432').to('676951791971074048')
   g.addE('el3').from('676951791958491136').to('676951792013017088')
   g.addE('el2').from('676951792256286720').to('676951791857827840')
   g.addE('el1').from('676951792042377216').to('676951791916548096')
   g.addE('el3').from('676951791375482880').to('676951791807496192')
   g.addE('el0').from('676951792013017088').to('676951791601975296')
   g.addE('el1').from('676951791346122752').to('676951790951858176')
   g.addE('el0').from('676951791740387328').to('676951792256286720')
   g.addE('el0').from('676951791102853120').to('676951790968635392')
   g.addE('el3').from('676951791618752512').to('676951791807496192')
   g.addE('el1').from('676951791283208192').to('676951790951858176')
   g.addE('el0').from('676951791165767680').to('676951791631335424')
   g.addE('el4').from('676951792256286720').to('676951792327589888')
   g.addE('el0').from('676951792013017088').to('676951792239509504')
   g.addE('el0').from('676951791807496192').to('676951791023161344')
   g.addE('el0').from('676951791807496192').to('676951792298229760')
   g.addE('el4').from('676951791207710720').to('676951791056715776')
   g.addE('el4').from('676951791165767680').to('676951791757164544')
   g.addE('el3').from('676951791115436032').to('676951791023161344')
   g.addE('el3').from('676951790981218304').to('676951792013017088')
   g.addE('el3').from('676951790981218304').to('676951792092708864')
   g.addE('el0').from('676951791425814528').to('676951792092708864')
   g.addE('el1').from('676951791929131008').to('676951792369532928')
   g.addE('el0').from('676951791207710720').to('676951791740387328')
   g.addE('el3').from('676951790981218304').to('676951791132213248')
   g.addE('el3').from('676951791069298688').to('676951791740387328')
   g.addE('el0').from('676951792013017088').to('676951792298229760')
   g.addE('el3').from('676951792382115840').to('676951792059154432')
   g.addE('el3').from('676951792285646848').to('676951791807496192')
   g.addE('el4').from('676951792013017088').to('676951792369532928')
   g.addE('el1').from('676951791283208192').to('676951792105291776')
   g.addE('el3').from('676951791270625280').to('676951791681667072')
   g.addE('el1').from('676951792042377216').to('676951791056715776')
   g.addE('el0').from('676951791807496192').to('676951792059154432')
   g.addE('el2').from('676951791409037312').to('676951791375482880')
   g.addE('el4').from('676951791425814528').to('676951791757164544')
   g.addE('el3').from('676951791857827840').to('676951790968635392')
   g.addE('el3').from('676951791178350592').to('676951791807496192')
   g.addE('el4').from('676951792013017088').to('676951791312568320')
   g.addE('el3').from('676951791929131008').to('676951791023161344')
   g.addE('el0').from('676951791425814528').to('676951790968635392')
   g.addE('el4').from('676951791023161344').to('676951792327589888')
   g.addE('el0').from('676951792013017088').to('676951791631335424')
   g.addE('el3').from('676951792285646848').to('676951790968635392')
   g.addE('el3').from('676951792285646848').to('676951791165767680')
   g.addE('el1').from('676951791526477824').to('676951792394698752')
   g.addE('el1').from('676951791857827840').to('676951791841050624')
   g.addE('el4').from('676951792059154432').to('676951791887187968')
   g.addE('el3').from('676951792382115840').to('676951791132213248')
   g.addE('el4').from('676951791681667072').to('676951791824273408')
   g.addE('el0').from('676951791425814528').to('676951791631335424')
   g.addE('el4').from('676951791165767680').to('676951791539060736')
   g.addE('el3').from('676951791178350592').to('676951792239509504')
   g.addE('el4').from('676951792256286720').to('676951791916548096')
   ```
   
   ### Vertex/Edge example (问题点 / 边数据举例)
   
   _No response_
   
   ### Schema [VertexLabel, EdgeLabel, IndexLabel] (元数据结构)
   
   _No response_


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to