namespace Bit.Seeder;
///
/// Base interface for query operations in the seeding system. The base interface should not be used directly, rather use `IQuery<TRequest, TResult>`.
///
///
/// Queries are read-only operations that retrieve data from the seeding context.
/// Unlike scenes, which create data, queries fetch existing data based on request parameters.
/// They follow a type-safe pattern using generics to ensure proper request/response handling
/// while maintaining a common non-generic interface for dynamic invocation.
///
public interface IQuery
{
///
/// Gets the type of request this query expects.
///
/// The request type that this query can process.
Type GetRequestType();
///
/// Executes the query based on the provided request object.
///
/// The request object containing parameters for the query operation.
/// The query result data as an object.
Task