What does the skip boolean field do in usePopularProducts?

What does this field do in usePopularProducts and other product listing hooks?

Hi, this skip option is similar to Apollo’s useQuery’s skip option: useQuery - Apollo GraphQL Docs.

If the value is true when the component using this hook is rendered, the query is not fired for that render.