Saman Rad
Saman Rad
I use vue-apollo in localhost and use graphQL server as remote host. My Apollo `fetchPolicy` is on `cache-first`. But it doesn't cache the queries. When I disconnect my internet connection,...
WP-GraphQL-Woocommerce can't detect the product categories with different `term_id` and `term_taxonomy_id` IDs in `wp_term_taxonomy` table. By default, the `term_id` and `term_taxonomy_id` have the same ID value in `wp_term_taxonomy` table. For...
When the item not found in graphql server, the nuxt returns `500` statusCode instead of `404`. I only want the `500` code when the graphQL host is not rechable. ...
Hi. Could not send more than 3 inline button rows in "replyMarkupInlineKeyboard" type (at sendMessage method) ! This code works well: ``` assert(tdbot_function({ ["@type"]="sendMessage", chat_id=msg.chat_id, reply_to_message_id=msg.id, disable_notification=false, from_background=true, reply_markup={ ["@type"]="replyMarkupInlineKeyboard",...
Is there any option/hook to prevent sending `woocommerce-session` header response? Because I disabled shopping/authentication on my website and I don't need this header anymore. Also when using cache plugins (Litespeed...
Is it possible to use unix socket location instead of TCP IP address? For example: `/var/run/memcached.sock` And how to use it inside `Client.create()` ?
How can I remove automatic generated `__typename` from `server.json` queries?
I use cPanel and Cloulinux and Litespeed I installed the LSMCD via cPanel plugin file in this command: ```bash sudo git clone https://github.com/litespeedtech/lsmcd.git sudo cd lsmcd sudo ./lsmcd_cpanel.sh ``` LSMCD...
Hi, I want to distinct the OLS, LSPHP and my website PHP codes images into separated containers (pods) to run in Kubernetes. And link between them to communicate. When using...
**vite.config.ts** ```ts import { defineConfig } from 'vite' import vue from '@vitejs/plugin-vue' import { svg4VuePlugin } from 'vite-plugin-svg4vue' export default defineConfig({ plugins: [ vue(), svg4VuePlugin({ defaultExport: 'component' }), ], })...