Skip to content

Commit 961e89d

Browse files
authored
Merge pull request #438 from JLedel/436-running-aql-query-pascal-case
Fixes #436 Properties in RunningAqlQuery class should be PascalCase instead of lowerCase
2 parents 6f2883b + 3a23d08 commit 961e89d

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

arangodb-net-standard/AqlFunctionApi/Models/RunningAqlQuery.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,39 +17,39 @@ public class RunningAqlQuery
1717
/// <summary>
1818
/// The name of the database the query runs in.
1919
/// </summary>
20-
public string database { get; set; }
20+
public string Database { get; set; }
2121

2222
/// <summary>
2323
/// The name of the user that started the query.
2424
/// </summary>
25-
public string user { get; set; }
25+
public string User { get; set; }
2626

2727
/// <summary>
2828
/// The query string (potentially truncated).
2929
/// </summary>
30-
public string query { get; set; }
30+
public string Query { get; set; }
3131

3232
/// <summary>
3333
/// The bind parameter values used by the query.
3434
/// </summary>
35-
public Dictionary<string, object> bindVars { get; set; }
35+
public Dictionary<string, object> BindVars { get; set; }
3636

3737
/// <summary>
3838
/// The date and time when the query was started.
3939
/// </summary>
40-
public DateTime? started { get; set; }
40+
public DateTime? Started { get; set; }
4141

4242
/// <summary>
4343
/// The query’s run time up to the point the list of queries was queried.
4444
/// </summary>
45-
public string runTime { get; set; }
45+
public string RunTime { get; set; }
4646

4747
/// <summary>
4848
/// The query’s current execution state.
4949
/// See online documentation
5050
/// for more information.
5151
/// </summary>
52-
public string state { get; set; }
52+
public string State { get; set; }
5353

5454
/// <summary>
5555
/// Indicates whether or not the query uses a streaming cursor.

0 commit comments

Comments
 (0)