@@ -97,7 +97,7 @@ public async Task<ResultSet> RO_QueryAsync(string graphName, string query, long?
9797 internal static readonly Dictionary < string , List < string > > EmptyKwargsDictionary =
9898 new Dictionary < string , List < string > > ( ) ;
9999
100- // TODO: Check if needed
100+ // TODO: Check if this is needed:
101101 /// <inheritdoc/>
102102 public ResultSet CallProcedure ( string graphName , string procedure ) =>
103103 CallProcedure ( graphName , procedure , Enumerable . Empty < string > ( ) , EmptyKwargsDictionary ) ;
@@ -147,32 +147,6 @@ public async Task<ResultSet> DeleteAsync(string graphName)
147147 return processedResult ;
148148 }
149149
150- // TODO: Check if this (CallProcedure) is needed
151- /// <inheritdoc/>
152- public ResultSet CallProcedureReadOnly ( string graphName , string procedure ) =>
153- CallProcedureReadOnly ( graphName , procedure , Enumerable . Empty < string > ( ) , EmptyKwargsDictionary ) ;
154-
155- /// <inheritdoc/>
156- public ResultSet CallProcedureReadOnly ( string graphName , string procedure , IEnumerable < string > args ) =>
157- CallProcedureReadOnly ( graphName , procedure , args , EmptyKwargsDictionary ) ;
158-
159- /// <inheritdoc/>
160- public ResultSet CallProcedureReadOnly ( string graphName , string procedure , IEnumerable < string > args , Dictionary < string , List < string > > kwargs )
161- {
162- args = args . Select ( a => QuoteString ( a ) ) ;
163-
164- var queryBody = new StringBuilder ( ) ;
165-
166- queryBody . Append ( $ "CALL { procedure } ({ string . Join ( "," , args ) } )") ;
167-
168- if ( kwargs . TryGetValue ( "y" , out var kwargsList ) )
169- {
170- queryBody . Append ( string . Join ( "," , kwargsList ) ) ;
171- }
172-
173- return RO_Query ( graphName , queryBody . ToString ( ) ) ;
174- }
175-
176150 /// <inheritdoc/>
177151 public IReadOnlyList < string > Explain ( string graphName , string query )
178152 {
0 commit comments