mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 01:12:56 +03:00
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:
parent
152f6017b3
commit
9546362b2e
@ -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(())
|
||||
}
|
||||
|
@ -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")]
|
||||
|
Loading…
Reference in New Issue
Block a user