frontend/pages/api/create_hints.ts

13 lines
301 B
TypeScript
Raw Normal View History

2022-10-22 19:11:56 +03:00
import { INode } from "../../store/reducers/nodesInputReducer";
2022-10-22 10:37:05 +03:00
import { fetcher } from "./fetch";
2022-10-22 19:11:56 +03:00
export default async (word: string, hints:INode[]) => {
2022-10-22 10:37:05 +03:00
const data = await fetcher.post('/autocomplete_schema', {
2022-10-22 19:11:56 +03:00
content: word,
exclude: []
2022-10-22 10:37:05 +03:00
});
2022-10-22 19:11:56 +03:00
return data.data.nodes;
2022-10-22 10:37:05 +03:00
}