fix a minor typing mistake (#623)

currenlty -> currently

Slack: https://hasurahq.slack.com/archives/C066TKMH79R/p1716816424823129
V3_GIT_ORIGIN_REV_ID: 5897079c2b942bca4d74cc84d868f4340ce6e762
This commit is contained in:
paritosh-08 2024-05-27 20:19:50 +05:30 committed by hasura-bot
parent 152f6017b3
commit 9546362b2e
2 changed files with 2 additions and 2 deletions

View File

@ -165,7 +165,7 @@ fn test_order_by_error_order_by_expression_type_present_and_only_asc_in_enum_typ
assert_eq!(
gds.unwrap_err().to_string(),
"metadata is not consistent: invalid directions: Asc defined in orderByInput of GraphqlConfig , currenlty there is no support for partial directions. Please specify a type which has both 'asc' and 'desc' directions"
"metadata is not consistent: invalid directions: Asc defined in orderByInput of GraphqlConfig , currently there is no support for partial directions. Please specify a type which has both 'asc' and 'desc' directions"
);
Ok(())
}

View File

@ -791,7 +791,7 @@ pub enum GraphqlConfigError {
#[error("only one enumTypeNames can be defined in GraphqlConfig, whose direction values are both 'asc' and 'desc'.")]
MultipleOrderByEnumTypeNamesInGraphqlConfig,
#[error(
"invalid directions: {directions} defined in orderByInput of GraphqlConfig , currenlty there is no support for partial directions. Please specify a type which has both 'asc' and 'desc' directions"
"invalid directions: {directions} defined in orderByInput of GraphqlConfig , currently there is no support for partial directions. Please specify a type which has both 'asc' and 'desc' directions"
)]
InvalidOrderByDirection { directions: String },
#[error("the fieldName for argumentsInput need to be defined in GraphqlConfig, when models have argumentsInputType")]