mirror of
https://github.com/Shchoholiev/shopping-assistant-web-client.git
synced 2025-04-04 16:49:36 +00:00
51 lines
1.1 KiB
C#
51 lines
1.1 KiB
C#
using Microsoft.AspNetCore.Components;
|
|
using ShoppingAssistantWebClient.Web.Models;
|
|
using GraphQL;
|
|
using Newtonsoft.Json;
|
|
using ShoppingAssistantWebClient.Web.Network;
|
|
|
|
namespace ShoppingAssistantWebClient.Web.Pages;
|
|
|
|
public partial class Chat : ComponentBase
|
|
{
|
|
|
|
[Inject]
|
|
private ApiClient _apiClient { get; set; }
|
|
|
|
|
|
protected override async Task OnInitializedAsync()
|
|
{
|
|
await LoadMenus();
|
|
}
|
|
|
|
|
|
private async Task LoadMenus()
|
|
{
|
|
var pageNumber = 1;
|
|
var request = new GraphQLRequest
|
|
{
|
|
Query = @"mutation StartPersonalWishlist {
|
|
startPersonalWishlist(dto: { type: product, firstMessageText: hello }) {
|
|
id
|
|
name
|
|
type
|
|
createdById
|
|
}
|
|
}",
|
|
|
|
Variables = new
|
|
{
|
|
pageNumber = pageNumber,
|
|
pageSize = 12,
|
|
}
|
|
};
|
|
|
|
var response = await _apiClient.QueryAsync(request);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|