@@ -1958,25 +1958,25 @@ async def mock_rest_api_artifact_generate(httpx_mock: HTTPXMock) -> HTTPXMock:
19581958@pytest .fixture
19591959async def mock_query_mutation_schema_dropdown_add (httpx_mock : HTTPXMock ) -> None :
19601960 response = {"data" : {"SchemaDropdownAdd" : {"ok" : True }}}
1961- httpx_mock .add_response (method = "POST" , url = "http://mock/graphql" , json = response )
1961+ httpx_mock .add_response (method = "POST" , url = "http://mock/graphql/main " , json = response )
19621962
19631963
19641964@pytest .fixture
19651965async def mock_query_mutation_schema_dropdown_remove (httpx_mock : HTTPXMock ) -> None :
19661966 response = {"data" : {"SchemaDropdownRemove" : {"ok" : True }}}
1967- httpx_mock .add_response (method = "POST" , url = "http://mock/graphql" , json = response )
1967+ httpx_mock .add_response (method = "POST" , url = "http://mock/graphql/main " , json = response )
19681968
19691969
19701970@pytest .fixture
19711971async def mock_query_mutation_schema_enum_add (httpx_mock : HTTPXMock ) -> None :
19721972 response = {"data" : {"SchemaEnumAdd" : {"ok" : True }}}
1973- httpx_mock .add_response (method = "POST" , url = "http://mock/graphql" , json = response )
1973+ httpx_mock .add_response (method = "POST" , url = "http://mock/graphql/main " , json = response )
19741974
19751975
19761976@pytest .fixture
19771977async def mock_query_mutation_schema_enum_remove (httpx_mock : HTTPXMock ) -> None :
19781978 response = {"data" : {"SchemaEnumRemove" : {"ok" : True }}}
1979- httpx_mock .add_response (method = "POST" , url = "http://mock/graphql" , json = response )
1979+ httpx_mock .add_response (method = "POST" , url = "http://mock/graphql/main " , json = response )
19801980
19811981
19821982@pytest .fixture
0 commit comments