PHPackages                             hawksama/magento2-shopfinder-graphql - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. hawksama/magento2-shopfinder-graphql

ActiveMagento2-module[API Development](/categories/api)

hawksama/magento2-shopfinder-graphql
====================================

Shopfinder GraphQL module for Magento 2

1.0.2(1y ago)031PHPPHP ~8.1||~8.2||~8.3

Since Mar 24Pushed 1y ago1 watchersCompare

[ Source](https://github.com/Hawksama/magento2-shopfinder-graphql)[ Packagist](https://packagist.org/packages/hawksama/magento2-shopfinder-graphql)[ RSS](/packages/hawksama-magento2-shopfinder-graphql/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (3)Dependencies (2)Versions (3)Used By (0)

Shopfinder GraphQL Module for Magento 2
=======================================

[](#shopfinder-graphql-module-for-magento-2)

A Magento 2 module that provides GraphQL API endpoints for managing shop locations, with a dedicated admin interface for shop management.

Features
--------

[](#features)

- GraphQL API for shop management (create, read, update)
- Admin interface for shop management under `Content > Shopfinder`
- Input validation for shop data
- Proper error handling and logging
- Country code standardization

Installation
------------

[](#installation)

Add the module to your project:

```
composer require hawksama/magento2-shopfinder-graphql
```

GraphQL Endpoints
=================

[](#graphql-endpoints)

Here are practical examples of all available GraphQL operations for the Shopfinder module:

Query All Shops
---------------

[](#query-all-shops)

```
query {
  shops {
    shop_id
    name
    identifier
    country
  }
}

```

Query Shop by ID
----------------

[](#query-shop-by-id)

```
query {
  shopByIdentifier(identifier: "shop_in_romania") {
    shop_id
    name
    identifier
    country
  }
}

```

Query Update Shop
-----------------

[](#query-update-shop)

```
mutation {
  updateShop(input: {
    shop_id: 1
    name: "Updated Shop Name"
    country: "RO"
  }) {
    shop {
      shop_id
      name
      identifier
      country
    }
  }
}

```

Query Delete Shop
-----------------

[](#query-delete-shop)

### This is not allowed via GraphQL, only via the admin interface

[](#this-is-not-allowed-via-graphql-only-via-the-admin-interface)

You can test it by using:

```
{
  "query": "mutation { deleteShop(id: 2) { success message } }"
}

```

Query Create Shop
-----------------

[](#query-create-shop)

#### This is not allowed via GraphQL, only via the admin interface

[](#this-is-not-allowed-via-graphql-only-via-the-admin-interface-1)

```
{
    "query": "mutation { createShop(input: { name: \"Shop in Bulgaria\", identifier: \"shop_in_bulgaria\", country: \"BG\" }) { shop { shop_id name identifier country } } }"
}

```

###  Health Score

30

—

LowBetter than 64% of packages

Maintenance46

Moderate activity, may be stable

Popularity4

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity53

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

2

Last Release

414d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/b5d9b3bcbbbebb62b1f53afd772f4a81d02a77e969b0acc23e565a28f64445c8?d=identicon)[hawksama](/maintainers/hawksama)

---

Top Contributors

[![Hawksama](https://avatars.githubusercontent.com/u/46504593?v=4)](https://github.com/Hawksama "Hawksama (3 commits)")

### Embed Badge

![Health badge](/badges/hawksama-magento2-shopfinder-graphql/health.svg)

```
[![Health](https://phpackages.com/badges/hawksama-magento2-shopfinder-graphql/health.svg)](https://phpackages.com/packages/hawksama-magento2-shopfinder-graphql)
```

###  Alternatives

[smile/elasticsuite

Magento 2 merchandising and search engine built on ElasticSearch

8044.5M33](/packages/smile-elasticsuite)[graycore/magento2-cors

A Magento 2 module that enables CORS on the GraphQL and REST Apis

99516.1k](/packages/graycore-magento2-cors)[elgentos/module-prismicio

Magento 2 - Prismic.io integration

39112.0k3](/packages/elgentos-module-prismicio)[zepgram/module-rest

Technical module to industrialize API REST call with dependency injection pattern using Guzzle library

1326.2k](/packages/zepgram-module-rest)[yireo/magento2-additional-endpoints-graph-ql

113.0k](/packages/yireo-magento2-additional-endpoints-graph-ql)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
