diff --git a/src/NRedisStack/Graph/IGraphCommands.cs b/src/NRedisStack/Graph/IGraphCommands.cs index 64ba041f..2ce0f289 100644 --- a/src/NRedisStack/Graph/IGraphCommands.cs +++ b/src/NRedisStack/Graph/IGraphCommands.cs @@ -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 { /// @@ -140,4 +141,4 @@ public interface IGraphCommands /// List> Slowlog(string graphName); } -} \ No newline at end of file +} diff --git a/src/NRedisStack/Graph/IGraphCommandsAsync.cs b/src/NRedisStack/Graph/IGraphCommandsAsync.cs index a6d2d36d..7a178a7a 100644 --- a/src/NRedisStack/Graph/IGraphCommandsAsync.cs +++ b/src/NRedisStack/Graph/IGraphCommandsAsync.cs @@ -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 { /// @@ -140,4 +140,4 @@ public interface IGraphCommandsAsync /// Task>> SlowlogAsync(string graphName); } -} \ No newline at end of file +}