Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/NRedisStack/Graph/IGraphCommands.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@

namespace NRedisStack
{
[Obsolete("RedisGraph is not supported since Redis 7.2 (https://redis.com/blog/redisgraph-eol/)")]

[Obsolete("RedisGraph support is deprecated as of Redis Stack 7.2 (https://redis.com/blog/redisgraph-eol/)")]
public interface IGraphCommands
{
/// <summary>
Expand Down Expand Up @@ -140,4 +141,4 @@ public interface IGraphCommands
/// <remarks><seealso href="https://redis.io/commands/graph.slowlog"/></remarks>
List<List<string>> Slowlog(string graphName);
}
}
}
4 changes: 2 additions & 2 deletions src/NRedisStack/Graph/IGraphCommandsAsync.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

namespace NRedisStack
{
[Obsolete("RedisGraph is not supported since Redis 7.2 (https://redis.com/blog/redisgraph-eol/)")]
[Obsolete("RedisGraph support is deprecated as of Redis Stack 7.2 (https://redis.com/blog/redisgraph-eol/)")]
public interface IGraphCommandsAsync
{
/// <summary>
Expand Down Expand Up @@ -140,4 +140,4 @@ public interface IGraphCommandsAsync
/// <remarks><seealso href="https://redis.io/commands/graph.slowlog"/></remarks>
Task<List<List<string>>> SlowlogAsync(string graphName);
}
}
}