ZelinMa557

Results 13 issues of ZelinMa557

### What problem does this PR solve? Issue Number: [#235](https://github.com/openGemini/openGemini/issues/235) ### What is changed and how it works? add token authentication, details see [issue](https://github.com/openGemini/openGemini/issues/235#issuecomment-1543944729) ### How Has This Been Tested?...

### PR Category CINN ### PR Types New features ### Description add support for lowering generate shape op with multi outputs

contributor

使用如下cypher语句查询时,tugraph报错: ```cypher MATCH (n:Entity {name:'test_entity_128'})-[r:Relation*1..3]-(m:Entity) RETURN r; ``` 如果把`return r` 改成`return m`,tugraph就不会报错。 是否有其他替代方案,可以简便的查询k跳以内的子图? 建表语句: ``` CALL db.createVertexLabel('Entity', 'name', 'name', 'string', false, 'type', 'string', false, 'description', 'string', false, 'chunk_id', 'int64', false);...